diff options
Diffstat (limited to 'src/style.css')
| -rw-r--r-- | src/style.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..242ed49 --- /dev/null +++ b/src/style.css @@ -0,0 +1,29 @@ +#hyprmenu { + background-color: transparent; + font-family: SauceCodePro Nerd Font,FontAwesome, Roboto, Helvetica, Arial, sans-serif; + font-weight: normal; +} + +#search { + background-color: rgba(29, 32, 33, 1); + border: none; + box-shadow: none; + padding: 10px; + border-radius: 0px; +} + +#search:focus { + border: none; + box-shadow: none; +} + +#item { + padding: 10px; + background-color: rgba(40, 40, 40, 0.8); +} + +#item:selected { + background-color: #b16286; + padding: 10px; +} + |