diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-23 06:47:03 +0300 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-23 06:47:03 +0300 |
commit | 7ff798534a6fb9c99611d18ee22757346798ef61 (patch) | |
tree | 1f6603ff9f3eede365e6963b3ac66b5edbd232fb /.config/eww/eww.scss | |
parent | 8f7cbf4ad87d63fe82173645ecb590ebb0f12354 (diff) |
eww: Add an eww configuration
Diffstat (limited to '.config/eww/eww.scss')
-rw-r--r-- | .config/eww/eww.scss | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/.config/eww/eww.scss b/.config/eww/eww.scss new file mode 100644 index 0000000..0fc9f02 --- /dev/null +++ b/.config/eww/eww.scss @@ -0,0 +1,75 @@ +* { + all: unset; + font-family: 'Iosevka Smooth'; + font-size: 18px; + color: #FFF; +} + +.bar { + background-color: rgba(43, 48, 59, 0.5); + border-bottom: 3px solid rgba(100, 114, 125, 0.5); +} + +.end { + > box { + padding: 0 8px; + + > label:first-child { + padding-right: 16px; + } + } + + box:not(:last-child) > label:last-child { + margin-right: 12px; + } +} + +.cal { + $bg: rgba(43, 48, 59, 1); + $blue: #9CDCFE; + $yellow: #F0E68C; + + font-size: 28px; + + .button { + -gtk-icon-source: none; + } + + .view { + background-color: $bg; + border-radius: 4px; + border: 3px solid rgba(100, 114, 125, .5); + } + + .highlight { + color: $blue; + font-weight: bold; + } + + :indeterminate { + color: #999; + } + + :selected { + background-color: #414859; + border-radius: 4px; + } +} + +.workspaces button { + label { + padding: 0 13px; + } + + &:hover { + background: rgba(0, 0, 0, 0.2); + } + + &.active { + background: rgba(0, 0, 0, 0.4); + } + + &:hover, &.active { + box-shadow: inset 0 -3px #FAA14F; + } +} |