diff options
Diffstat (limited to 'views/menu.css')
-rw-r--r-- | views/menu.css | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/views/menu.css b/views/menu.css index d6fc60e..2c2b94f 100644 --- a/views/menu.css +++ b/views/menu.css @@ -37,8 +37,12 @@ } .services:not(.services-settings) li.selected .item { - border-color: #00ff99; + background-color: rgba(0, 255, 153, 0.25); + backdrop-filter: blur(10px); + border-radius: 10px; animation-direction: alternate-reverse; + position: relative; + z-index: 9999999999; animation-duration: 3s; animation-name: border-overlay; animation-fill-mode: both; @@ -59,10 +63,10 @@ @keyframes border-overlay { 0% { - border-color: #00ff66; + background-color: rgba(0, 255, 102, 0.25); } 100% { - border-color: #00ccff; + background-color: rgba(0, 204, 255, 0.25); } } |