diff --git a/desktopenvs/hyprland/nwg-panel/menu-start.css b/desktopenvs/hyprland/nwg-panel/menu-start.css index 874514e..fd5ad99 100644 --- a/desktopenvs/hyprland/nwg-panel/menu-start.css +++ b/desktopenvs/hyprland/nwg-panel/menu-start.css @@ -1,22 +1,52 @@ +* { + font-family: Agave Nerd Font Mono, Arial, sans-serif; + border-radius: 60px; + font-size: 10pt; +} + window { - background-color: rgba (36, 47, 79, 0.92); - color: #eeeeee + background-color: #1a1a1a; + color: #E40046; + border: solid; + border-width: 4px; + margin-bottom: 10px; + padding: 5px; } list { background: none; - border-radius: 15px + border-radius: 25px; + padding: 5px; + margin: 5px; } entry { - background-color: rgba (0, 0, 0, 0.2) + background-color: rgba(0, 0, 0, 0.2); + padding: 4px 8px; + border-radius: 15px; + color: #b0b4bc; +} + +button, image { + background: none; + border: none; + box-shadow: none; + color: #999; } button { - background: none; - border: none + padding: 4px; + margin-left: 4px; + margin-right: 4px; + color: #eeeeee; + font-size: 12px; + border-radius: 2px; } button:hover { - background-color: rgba (255, 255, 255, 0.1) -} \ No newline at end of file + background-color: rgba(255, 255, 255, 0.15); +} + +button:focus { + box-shadow: none; +}