mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
52 lines
1.3 KiB
CSS
52 lines
1.3 KiB
CSS
/** ********** Fonts ********** **/
|
|
* {
|
|
font-family: "JetBrains Mono", "Iosevka Nerd Font", archcraft, sans-serif;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/** ********** Main Window ********** **/
|
|
window {
|
|
background-color: #1E1E2E;
|
|
}
|
|
|
|
/** ********** Buttons ********** **/
|
|
button {
|
|
background-color: #242434;
|
|
color: #FFFFFF;
|
|
border: 2px solid #282838;
|
|
border-radius: 20px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 35%;
|
|
}
|
|
|
|
button:focus, button:active, button:hover {
|
|
background-color: #89B4FA;
|
|
outline-style: none;
|
|
}
|
|
|
|
/** ********** Icons ********** **/
|
|
#lock {
|
|
background-image: image(url("icons/lock.png"), url("/usr/share/wlogout/icons/lock.png"));
|
|
}
|
|
|
|
#logout {
|
|
background-image: image(url("icons/logout.png"), url("/usr/share/wlogout/icons/logout.png"));
|
|
}
|
|
|
|
#suspend {
|
|
background-image: image(url("icons/suspend.png"), url("/usr/share/wlogout/icons/suspend.png"));
|
|
}
|
|
|
|
#hibernate {
|
|
background-image: image(url("icons/hibernate.png"), url("/usr/share/wlogout/icons/hibernate.png"));
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: image(url("icons/shutdown.png"), url("/usr/share/wlogout/icons/shutdown.png"));
|
|
}
|
|
|
|
#reboot {
|
|
background-image: image(url("icons/reboot.png"), url("/usr/share/wlogout/icons/reboot.png"));
|
|
}
|