diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-05-26 20:13:29 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-05-26 20:13:29 -0700 |
| commit | 577d92eb35ab98df96e993029a26c4fdafade561 (patch) | |
| tree | e5bc97bd6f977c16b8eddd7d4ccd79d09f57ca93 /home/eww/eww.css | |
| parent | 5acbcc7f23e3bbba62756ac5abefc01dc993dc54 (diff) | |
Move eww config into non-nix files
Diffstat (limited to 'home/eww/eww.css')
| -rw-r--r-- | home/eww/eww.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/home/eww/eww.css b/home/eww/eww.css new file mode 100644 index 0000000..075beb8 --- /dev/null +++ b/home/eww/eww.css @@ -0,0 +1,51 @@ +@import "colors.css"; + +window { + color: @fg; + background-color: @bg; + border: 2px solid @bg1; + font-family: monospace, sans-serif; +} + +.main { + margin: 8px; +} + +.left { + margin-top: 8px; +} + +.song-title { + font-size: 17px; + font-weight: bold; +} + +.song-album { + color: @fg2; +} + +.song-artist { + color: @fg2; +} + +.control { + font-size: 24; +} + +button { + color: @fg; + background: @bg; + + border: none; + border-radius: 0; + box-shadow: none; + text-shadow: none; +} + +button:hover { + background: @bg1; +} + +button:active { + background: @bg2; +}
\ No newline at end of file |