Hyprland-dotfiles/wlogout/style.css

98 lines
2.1 KiB
CSS
Raw Permalink Normal View History

2023-09-11 07:42:16 -04:00
/*
_ _
__ _| | ___ __ _ ___ _ _| |_
\ \ /\ / / |/ _ \ / _` |/ _ \| | | | __|
\ V V /| | (_) | (_| | (_) | |_| | |_
\_/\_/ |_|\___/ \__, |\___/ \__,_|\__|
|___/
by Stephan Raabe (2023)
-----------------------------------------------------
*/
2023-09-21 08:04:23 -04:00
/* -----------------------------------------------------
* Import Pywal colors
* ----------------------------------------------------- */
@import '../../.cache/wal/colors-wlogout.css';
/* -----------------------------------------------------
* General
* ----------------------------------------------------- */
2023-08-31 15:57:25 -04:00
* {
2023-09-21 08:04:23 -04:00
font-family: "Fira Sans Semibold", FontAwesome, Roboto, Helvetica, Arial, sans-serif;
2023-08-31 15:57:25 -04:00
background-image: none;
2023-09-21 08:04:23 -04:00
transition: 20ms;
box-shadow: none;
2023-08-31 15:57:25 -04:00
}
2023-09-11 07:42:16 -04:00
2023-08-31 15:57:25 -04:00
window {
2024-03-26 16:34:19 -04:00
background: url("../../.cache/blurred_wallpaper.png");
background-size: cover;
2023-08-31 15:57:25 -04:00
}
2023-09-11 07:42:16 -04:00
2023-08-31 15:57:25 -04:00
button {
2023-09-11 07:42:16 -04:00
color: #FFFFFF;
2023-09-21 08:04:23 -04:00
font-size:20px;
background-repeat: no-repeat;
2023-08-31 15:57:25 -04:00
background-position: center;
background-size: 25%;
2023-09-11 07:42:16 -04:00
2023-09-21 08:04:23 -04:00
border-style: solid;
background-color: rgba(12, 12, 12, 0.3);
border: 3px solid #FFFFFF;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
2023-08-31 15:57:25 -04:00
}
2023-09-11 07:42:16 -04:00
button:focus,
button:active,
button:hover {
2023-09-21 08:04:23 -04:00
color: @color11;
background-color: rgba(12, 12, 12, 0.5);
border: 3px solid @color11;
2023-08-31 15:57:25 -04:00
}
2023-09-21 08:04:23 -04:00
/*
-----------------------------------------------------
Buttons
-----------------------------------------------------
*/
2023-08-31 15:57:25 -04:00
#lock {
2023-09-11 07:42:16 -04:00
margin: 10px;
border-radius: 20px;
2023-09-21 08:04:23 -04:00
background-image: image(url("icons/lock.png"));
2023-08-31 15:57:25 -04:00
}
#logout {
2023-09-11 07:42:16 -04:00
margin: 10px;
border-radius: 20px;
2023-09-21 08:04:23 -04:00
background-image: image(url("icons/logout.png"));
2023-08-31 15:57:25 -04:00
}
#suspend {
2023-09-11 07:42:16 -04:00
margin: 10px;
border-radius: 20px;
2023-09-21 08:04:23 -04:00
background-image: image(url("icons/suspend.png"));
2023-08-31 15:57:25 -04:00
}
#hibernate {
2023-09-11 07:42:16 -04:00
margin: 10px;
border-radius: 20px;
2023-09-23 15:22:15 -04:00
background-image: image(url("icons/hibernate.png"));
2023-08-31 15:57:25 -04:00
}
#shutdown {
2023-09-11 07:42:16 -04:00
margin: 10px;
border-radius: 20px;
2023-09-21 08:04:23 -04:00
background-image: image(url("icons/shutdown.png"));
2023-08-31 15:57:25 -04:00
}
#reboot {
2023-09-11 07:42:16 -04:00
margin: 10px;
border-radius: 20px;
2023-09-21 08:04:23 -04:00
background-image: image(url("icons/reboot.png"));
2023-08-31 15:57:25 -04:00
}