mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
50 lines
1004 B
CSS
50 lines
1004 B
CSS
* {
|
|
background-image: none;
|
|
box-shadow: none;
|
|
font-family: "LiterationMono Nerd Font", "Symbols Nerd Font Mono", monospace;
|
|
font-size: 10pt;
|
|
min-width: 0;
|
|
min-height: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
window {
|
|
background-color: rgba(31, 31, 40, 0.75);
|
|
}
|
|
|
|
button {
|
|
color: #d0d0d0;
|
|
background-color: #2b2b36;
|
|
border: 1px solid #3a3a46;
|
|
border-radius: 10px;
|
|
margin: 0;
|
|
padding: 0 0 12px 0;
|
|
min-width: 240px;
|
|
min-height: 140px;
|
|
background-repeat: no-repeat;
|
|
background-position: center 28%;
|
|
background-size: 80px 80px;
|
|
}
|
|
|
|
button:focus,
|
|
button:active,
|
|
button:hover {
|
|
color: #ffffff;
|
|
background-color: #4a90d9;
|
|
border-color: #4a90d9;
|
|
outline-style: none;
|
|
}
|
|
|
|
#logout {
|
|
background-image: image(url("/usr/share/wlogout/icons/logout.png"));
|
|
}
|
|
|
|
#reboot {
|
|
background-image: image(url("/usr/share/wlogout/icons/reboot.png"));
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: image(url("/usr/share/wlogout/icons/shutdown.png"));
|
|
}
|