diff options
author | Luca Matei Pintilie <lucafulger@gmail.com> | 2021-12-21 20:26:50 +0000 |
---|---|---|
committer | Luca Matei Pintilie <lucafulger@gmail.com> | 2021-12-21 20:26:50 +0000 |
commit | f8acb4edc93d2570856381eb7fb6f75db3955cf6 (patch) | |
tree | d8db466f88799f7d796e0b93d6a2ad8394c599c9 /.config/eww/eww.scss | |
parent | 2169a4155362a7f1639e4ad78033abb193f2d565 (diff) | |
download | dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.gz dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.bz2 dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.lz dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.xz dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.tar.zst dotfiles-f8acb4edc93d2570856381eb7fb6f75db3955cf6.zip |
Initial commit2
Diffstat (limited to '')
-rw-r--r-- | .config/eww/eww.scss | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/.config/eww/eww.scss b/.config/eww/eww.scss new file mode 100644 index 0000000..c517db2 --- /dev/null +++ b/.config/eww/eww.scss @@ -0,0 +1,66 @@ +* { + all: unset; //Unsets everything so you can style everything from scratch +} + +//Global Styles +.alsa-gui { + background-color: #1e222a; + color: #abb2bf; + padding: 12px; + border-radius: 7px; + font-size : 25px; +} + +.metric scale trough { + all: unset; + border-radius: 50px; + min-height: 3px; + min-width: 90px; + margin-left: 10px; + margin-right: 10px; +} + +.chad scale trough { + all: unset; + border-radius: 50px; + min-height: 3px; + min-width: 90px; + margin-left: 10px; + margin-right: 10px; +} + +.metric scale trough highlight { + all: unset; + background-color: #668ee3; + border-radius: 10px; +} + +.chad scale trough highlight { + all: unset; + background-color: #e06c75; + border-radius: 10px; +} + +.bri { + background-color: #d47d85; +} + +.metric scale trough { + all: unset; + background-color: #282c34; + border-radius: 50px; + min-height: 6px; + min-width: 90px; + margin-left: 10px; + margin-right: 10px; +} + +.chad scale trough { + all: unset; + background-color: #282c34; + border-radius: 50px; + min-height: 6px; + min-width: 90px; + margin-left: 10px; + margin-right: 10px; +} |