diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-02-24 23:10:12 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-02-24 23:10:12 +0900 |
| commit | c40b4015774b8f45a7752e44b4f81b7eed045266 (patch) | |
| tree | 3a1bce6ad2ccb78034f45a554a37a0cb81298c65 | |
| parent | 4f20f0630fb41bcf53a6801d01c94e39593cce08 (diff) | |
changed the wlogout to almost usual but with some little bit of twist
| -rw-r--r-- | config/wlogout/style.css | 138 |
1 files changed, 41 insertions, 97 deletions
diff --git a/config/wlogout/style.css b/config/wlogout/style.css index 4fc19b09..b8341e9a 100644 --- a/config/wlogout/style.css +++ b/config/wlogout/style.css @@ -6,140 +6,84 @@ window { font-family: "FantasqueSansM Nerd Font Mono Bold"; - font-size: 125%; - background-color: rgba(30, 30, 46, 0.9); + font-size: 24pt; + color: @foreground; /* text */ + background-color: rgba(30, 30, 46, 0.6); } button { - font-family: "FantasqueSansM Nerd Font Mono Bold"; + margin: 20px; background-repeat: no-repeat; - background-size: 10%; + background-position: center; + background-size: 30%; background-color: rgba(200, 220, 255, 0); animation: gradient_f 10s ease-in infinite; - transition: all 0.3s ease, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out; - border: 2px solid transparent; - border-radius: 30%; - margin: 0px; - padding: 0px; - transition: all 0.3s ease; - background-position: center; + transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682), box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out; + border-radius: 80px; + border:0px; } button:focus { - background-size: 20%; - border: 0px; - border-radius: 30%; + background-size: 40%; + border: 0px; + border-radius: 80px; + } button:hover { - background-color: transparent; - color: @color13; - border-radius: 40%; - background-size: 30%; - box-shadow: 0 0 100px @color12; + background-color: transparent; + color: @color11; + background-size: 40%; + margin: -20px; + border-radius: 80px; + /*box-shadow: 0 0 30px @color7;*/ + } -/* Port Side */ -#lock { - padding-right: 200px; - padding-left: 0px; - margin-left: 0px; - margin-right: -200px; - background-image: image(url("./icons/lock.png")); -} -#lock:hover { - padding-left: 200px; - padding-right: 0px; - margin-right: 0px; - margin-left: -200px; - background-image: image(url("./icons/lock-hover.png")); +/* Adjust the size of the icon or content inside the button */ +button span { + font-size: 1.2em; /* Increase the font size */ } -#reboot { - padding-right: 200px; - padding-left: 0px; - margin-left: 0px; - margin-right: -200px; - background-image: image(url("./icons/restart.png")); -} -#reboot:hover { - padding-left: 200px; - padding-right: 0px; - margin-right: 0px; - margin-left: -200px; - background-image: image(url("./icons/restart-hover.png")); -} -/* Midship */ -#shutdown { - padding-bottom: 0px; - padding-top: 0px; - padding-right: 0px; - padding-left: 0px; - margin-left: 0px; - margin-right: 0px; - margin-top: -200px; - background-image: image(url("./icons/power.png")); +#lock { + background-image: image(url("./icons/lock.png")); } -#shutdown:hover { - padding-top: 0px; - padding-bottom: 0px; - padding-right: 0px; - padding-left: 0px; - margin-left: 0px; - margin-right: 0px; - margin-top: -200px; - background-image: image(url("./icons/power-hover.png")); +#lock:hover { + background-image: image(url("./icons/lock-hover.png")); } #logout { - padding-top: 0px; - padding-bottom: 0px; - padding-right: 0px; - padding-left: 0px; - margin-left: 0px; - margin-right: 0px; - margin-bottom: -200px; background-image: image(url("./icons/logout.png")); } #logout:hover { - padding-bottom: 00px; - padding-top: 0px; - padding-right: 0px; - padding-left: 0px; - margin-left: 0px; - margin-right: 0px; - margin-bottom: -200px; background-image: image(url("./icons/logout-hover.png")); } -/* Starboard */ #suspend { - padding-left: 200px; - padding-right: 0px; - margin-right: 0px; - margin-left: -200px; background-image: image(url("./icons/sleep.png")); } #suspend:hover { - padding-right: 200px; - padding-left: 0px; - margin-left: 0px; - margin-right: -200px; background-image: image(url("./icons/sleep-hover.png")); } +#shutdown { + background-image: image(url("./icons/power.png")); +} +#shutdown:hover { + background-image: image(url("./icons/power-hover.png")); +} + +#reboot { + background-image: image(url("./icons/restart.png")); +} +#reboot:hover { + background-image: image(url("./icons/restart-hover.png")); +} + #hibernate { - padding-left: 200px; - padding-right: 0px; - margin-right: 0px; - margin-left: -200px; background-image: image(url("./icons/hibernate.png")); } #hibernate:hover { - padding-right: 200px; - padding-left: 0px; - margin-left: 0px; - margin-right: -200px; background-image: image(url("./icons/hibernate-hover.png")); } |
