66 lines
1.1 KiB
CSS
66 lines
1.1 KiB
CSS
.title-bar {
|
|
-webkit-app-region: drag;
|
|
margin: 0;
|
|
display: flex;
|
|
background-color: #000000;
|
|
color: #FFFFFF;
|
|
width: 100%;
|
|
height: 30px;
|
|
}
|
|
|
|
.menu-button-container {
|
|
background-color: #000000;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.app-name-container {
|
|
background-color: #000000;
|
|
display: flex;
|
|
justify-content: left;
|
|
align-items: left;
|
|
padding-left: 20px;
|
|
font-size: 11px;
|
|
padding-top: 0px;
|
|
}
|
|
|
|
.window-controls-container {
|
|
background-color: #000000;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.menu-button {
|
|
-webkit-app-region: no-drag;
|
|
display: inline-block;
|
|
text-align: center;
|
|
width: 50px;
|
|
height: 24px;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
.menu-button:hover {
|
|
background-color: grey;
|
|
}
|
|
|
|
.minimize-button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.min-max-button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.close-button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.close-button:hover {
|
|
background-color: rgb(255, 59, 48);
|
|
}
|
|
|