80 lines
1.2 KiB
CSS
80 lines
1.2 KiB
CSS
button {
|
|
padding: 0;
|
|
border: none;
|
|
background: none;
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-left: 10px;
|
|
color: white;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: grey;
|
|
}
|
|
|
|
.title-bar {
|
|
-webkit-app-region: drag;
|
|
margin: 0;
|
|
display: flex;
|
|
background-color: grey;
|
|
width: 100%;
|
|
height: 3%;
|
|
border-bottom: 0.5px solid grey;
|
|
}
|
|
|
|
.menu-button-container {
|
|
background-color: #000000;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.app-name-container {
|
|
background-color: #000000;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.menu-button:hover {
|
|
background-color: grey;
|
|
}
|
|
|
|
.minimize-button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.minimize-button:hover {
|
|
background-color: rgb(52, 199, 89);
|
|
}
|
|
|
|
.min-max-button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.min-max-button:hover {
|
|
background-color: rgb(255, 204, 0);
|
|
}
|
|
|
|
.close-button {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.close-button:hover {
|
|
background-color: rgb(255, 59, 48);
|
|
}
|
|
|