diff options
author | CircleShift <kgunger12@gmail.com> | 2025-06-22 02:44:40 -0400 |
---|---|---|
committer | CircleShift <kgunger12@gmail.com> | 2025-06-22 02:44:40 -0400 |
commit | d7c9a05a1945fe2f404628f2cb6ec5e2b74fa48a (patch) | |
tree | de1e3a8fbc28f6debb576da6e82c3ac8513e398a /styles | |
parent | 8ee13aa2a3ae77395abca0d99176841c8dcf2570 (diff) |
Improved unit button
Diffstat (limited to 'styles')
-rw-r--r-- | styles/widgets.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/styles/widgets.css b/styles/widgets.css index 9483a81..870d2aa 100644 --- a/styles/widgets.css +++ b/styles/widgets.css @@ -558,6 +558,41 @@ text-align: center; } +.thermostat > .unit { + position: absolute; + top: 5px; + right: 5px; + --width: 1; + --height: 1; + border-radius: 50%; + margin: 5px; + background-color: white; + box-shadow: none; + overflow: visible; +} + +.thermostat > .unit::after { + content: ''; + + position: absolute; + top: 0; + right: 0; + width: 100%; + height: 100%; + border-radius: 50%; + box-shadow: none; + transition-duration: 0.15s; +} + +.thermostat > .unit:active::after, .thermostat > .unit.touch::after { + transform: translate(-5px, -5px); + box-shadow: inset 5px 5px var(--w-shadow) !important; +} + +.thermostat > .unit:active, .thermostat > .unit.touch { + box-shadow: inset -5px -5px var(--w-bg-hover) !important; +} + /* Button Select */ |