64 lines
1.3 KiB
CSS
64 lines
1.3 KiB
CSS
* {
|
|
background-image: none;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 15px;
|
|
}
|
|
|
|
window {
|
|
background-color: rgba(29, 32, 33, 0.85);
|
|
}
|
|
|
|
button {
|
|
color: #928374;
|
|
background-color: rgba(60, 56, 54, 0.7);
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-radius: 20px;
|
|
border-color: rgba(80, 73, 69, 0.5);
|
|
padding: 20px;
|
|
margin: 20px;
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 25%;
|
|
transition: all 0.3s ease;
|
|
outline: none;
|
|
}
|
|
|
|
button:focus, button:active, button:hover {
|
|
background-color: rgba(152, 151, 26, 0.7);
|
|
color: #282828;
|
|
border-color: #98971a;
|
|
}
|
|
|
|
#lock {
|
|
background-image: image(url("/usr/share/wlogout/icons/lock.png"));
|
|
}
|
|
|
|
#logout {
|
|
background-image: image(url("/usr/share/wlogout/icons/logout.png"));
|
|
}
|
|
|
|
#suspend {
|
|
background-image: image(url("/usr/share/wlogout/icons/suspend.png"));
|
|
}
|
|
|
|
#hibernate {
|
|
background-image: image(url("/usr/share/wlogout/icons/hibernate.png"));
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: image(url("/usr/share/wlogout/icons/shutdown.png"));
|
|
}
|
|
|
|
#reboot {
|
|
background-image: image(url("/usr/share/wlogout/icons/reboot.png"));
|
|
}
|
|
|
|
button label {
|
|
padding-top: 120px;
|
|
color: inherit;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|