63 lines
1.2 KiB
CSS
63 lines
1.2 KiB
CSS
![]() |
* {
|
||
|
background-image: none;
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
|
||
|
window {
|
||
|
background-color: rgba(12, 12, 12, 0.9);
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
border-radius: 0;
|
||
|
border-color: black;
|
||
|
text-decoration-color: #FFFFFF;
|
||
|
color: #FFFFFF;
|
||
|
background-color: #1E1E1E;
|
||
|
border-style: solid;
|
||
|
border-width: 1px;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
background-size: 25%;
|
||
|
}
|
||
|
|
||
|
button:focus, button:active, button:hover {
|
||
|
background-color: #3700B3;
|
||
|
outline-style: none;
|
||
|
}
|
||
|
|
||
|
#lock {
|
||
|
background-image: image(url("./lock.png"));
|
||
|
}
|
||
|
#lock:focus {
|
||
|
background-image: image(url("./lock-hover.png"));
|
||
|
}
|
||
|
|
||
|
#logout {
|
||
|
background-image: image(url("./logout.png"));
|
||
|
}
|
||
|
#logout:focus{
|
||
|
background-image: image(url("./logout-hover.png"));
|
||
|
}
|
||
|
|
||
|
#suspend {
|
||
|
background-image: image(url("./sleep.png"));
|
||
|
}
|
||
|
#suspend:focus {
|
||
|
background-image: image(url("./sleep-hover.png"));
|
||
|
}
|
||
|
|
||
|
#shutdown {
|
||
|
background-image: image(url("./power.png"));
|
||
|
}
|
||
|
#shutdown:focus {
|
||
|
background-image: image(url("./power-hover.png"));
|
||
|
}
|
||
|
|
||
|
#reboot {
|
||
|
background-image: image(url("./restart.png"));
|
||
|
}
|
||
|
#reboot:focus {
|
||
|
background-image: image(url("./restart-hover.png"));
|
||
|
background-image: image(url("./restart.png"));
|
||
|
}
|