dotfiles/wlogout/style.css

67 lines
1.2 KiB
CSS
Raw Normal View History

2024-03-02 18:38:36 +00:00
* {
background-image: none;
box-shadow: none;
font-family: "Sys TT";
2024-03-11 14:29:16 +00:00
font-size: 22px;
2024-03-02 18:38:36 +00:00
font-weight: 600;
}
window {
background-color: rgba(40, 40, 40, 0.9);
}
button {
border-radius: 0;
2024-03-11 14:29:16 +00:00
color: #ebdbb2;
2024-03-02 18:38:36 +00:00
background-color: #32302f;
background-repeat: no-repeat;
background-position: center;
background-size: 15%;
margin: 10px;
2024-03-15 08:27:55 +00:00
border: 3px solid #504945;
2024-03-02 18:38:36 +00:00
}
button:focus,
button:active,
button:hover {
2024-03-15 08:27:55 +00:00
background-color: #504945;
2024-03-02 18:38:36 +00:00
outline-style: none;
2024-03-15 08:27:55 +00:00
border: 3px solid #32302f;
2024-03-02 18:38:36 +00:00
}
#lock {
background-image: image(
url("/home/thomas/dotfiles/images/wlogout_icons/lock.svg")
);
}
2024-03-02 18:38:36 +00:00
#logout {
background-image: image(
url("/home/thomas/dotfiles/images/wlogout_icons/logout-two.svg")
);
}
2024-03-02 18:38:36 +00:00
#suspend {
background-image: image(
url("/home/thomas/dotfiles/images/wlogout_icons/suspend.svg")
);
}
2024-03-02 18:38:36 +00:00
#hibernate {
background-image: image(
url("/home/thomas/dotfiles/images/wlogout_icons/sleep.svg")
);
}
2024-03-02 18:38:36 +00:00
#shutdown {
background-image: image(
url("/home/thomas/dotfiles/images/wlogout_icons/shutdown.svg")
);
}
2024-03-02 18:38:36 +00:00
#reboot {
background-image: image(
url("/home/thomas/dotfiles/images/wlogout_icons/reboot-two.svg")
);
}