47 lines
863 B
CSS
47 lines
863 B
CSS
* {
|
|
background-image: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
window {
|
|
background-color: rgba(20, 21, 20, 0.92);
|
|
}
|
|
|
|
button {
|
|
border-radius: 0px;
|
|
margin: 4px;
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-color: #ef934d;
|
|
background-color: #1e1f1e;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 25%;
|
|
color: #ef934d;
|
|
}
|
|
|
|
button:focus, button:active, button:hover {
|
|
border-color: #ef934d;
|
|
background-color: #2a2b2a;
|
|
outline-style: none;
|
|
}
|
|
|
|
#logout {
|
|
background-image: image(url("icons/logout.png"));
|
|
}
|
|
|
|
#suspend {
|
|
background-image: image(url("icons/suspend.png"));
|
|
}
|
|
|
|
#hibernate {
|
|
background-image: image(url("icons/hibernate.png"));
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: image(url("icons/shutdown.png"));
|
|
}
|
|
|
|
#reboot {
|
|
background-image: image(url("icons/reboot.png"));
|
|
}
|