42 lines
693 B
CSS
42 lines
693 B
CSS
* {
|
|
background-image: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
window {
|
|
background-color: rgba(12, 12, 12, 0.9);
|
|
}
|
|
|
|
button {
|
|
border-radius: 34;
|
|
border-color: black;
|
|
text-decoration-color: blue;
|
|
color: #FFFFFF;
|
|
background-color: #32312e;
|
|
border: none;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 25%;
|
|
margin: 15px;
|
|
}
|
|
|
|
button:focus, button:active, button:hover {
|
|
background-color: #E6C873;
|
|
outline-style: none;
|
|
}
|
|
|
|
#lock {
|
|
background-image: url("./assets/lock.svg");
|
|
}
|
|
|
|
#logout {
|
|
background-image: url("./assets/logout.svg");
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: url("./assets/shutdown.svg");
|
|
}
|
|
|
|
#reboot {
|
|
background-image: url("./assets/reboot.svg");
|
|
}
|