diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-17 18:14:22 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-17 18:14:22 +0200 |
| commit | fe0e613928323f9dc538f1bdea8138456abffc4b (patch) | |
| tree | 019728342ae0f3329ab9ff631c02e55e4472f18a /common/home/wofi/style.css | |
create nix configuration
Diffstat (limited to 'common/home/wofi/style.css')
| -rw-r--r-- | common/home/wofi/style.css | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/common/home/wofi/style.css b/common/home/wofi/style.css new file mode 100644 index 0000000..7e38346 --- /dev/null +++ b/common/home/wofi/style.css @@ -0,0 +1,47 @@ +* { + font-family: "SauceCodePro NF"; +} + +window { + background: transparent; + color: #ebdbb2; +} + +#outer-box { + border-radius: 10px; + background: transparent; +} + +entry#input { + background: #1d2021; + border: 2px solid #b16286; + margin-bottom: 10px; + padding: 10px; + border-radius: 10px; +} +#scroll { + border-radius: 10px; + border: 2px solid #3c3836; + background: #1d2021; +} + +#entry { + border: none; + background: transparent; +} + +.entry { + border-radius: 5px; + border: none; + padding: 8px; + margin: 2px; +} + +.entry#selected { + border: none; + background: #b16286; +} + +.entry#selected label { + background: #b16286; +} |