From bb80e87ba62ea15eb9a3c5c24a5ae9ffcddef95e Mon Sep 17 00:00:00 2001 From: kenpat Date: Mon, 8 Jun 2026 18:15:23 +0000 Subject: [PATCH] Add wlogout CSS --- wlogout/style.css | 64 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 wlogout/style.css diff --git a/wlogout/style.css b/wlogout/style.css new file mode 100644 index 0000000..5d6a4db --- /dev/null +++ b/wlogout/style.css @@ -0,0 +1,64 @@ +* { + background-image: none; + box-shadow: none; +} + +window { + background-color: rgba(0, 0, 0, 0.92); +} + +button { + border-radius: 20px; + border-color: #D90202; + border-style: solid; + border-width: 3px; + background-repeat: no-repeat; + background-position: center 38%; + background-size: 35%; + color: #33D4C4; + font-family: MonoidNerdFont; + font-size: 13px; + margin: 12px; + padding-top: 60px; + padding-bottom: 20px; + padding-left: 15px; + padding-right: 15px; + min-height: 120px; + min-width: 110px; +} + +button:hover { + background-color: rgba(217, 2, 2, 0.2); + border-color: #33D4C4; + color: #DDDDDD; + outline-style: none; +} + +button:focus { + background-color: rgba(54, 41, 33, 0.5); + outline-style: none; +} + +#lock { + background-image: image(url("icons/lock.svg"), url("icons/lock.svg")); +} + +#logout { + background-image: image(url("icons/logout.svg"), url("icons/logout.svg")); +} + +#suspend { + background-image: image(url("icons/suspend.svg"), url("icons/suspend.svg")); +} + +#hibernate { + background-image: image(url("icons/hibernate.svg"), url("icons/hibernate.svg")); +} + +#shutdown { + background-image: image(url("icons/shutdown.svg"), url("icons/shutdown.svg")); +} + +#reboot { + background-image: image(url("icons/reboot.svg"), url("icons/reboot.svg")); +}