diff options
Diffstat (limited to 'assets/css/extended/custom.css')
-rw-r--r-- | assets/css/extended/custom.css | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/assets/css/extended/custom.css b/assets/css/extended/custom.css index 831259e..c78cacb 100644 --- a/assets/css/extended/custom.css +++ b/assets/css/extended/custom.css @@ -1,14 +1,29 @@ :root { - --link-hover-color: #449DD1 !important; - --link-hover-underline-color: #449DD1 !important; - --link-background-color: #78C0E0 !important; + --link-hover-color: #449DD1; + --link-hover-underline-color: #449DD1; + --link-background-color: #78C0E0; } .dark { --theme: rgb(0, 0, 0); - --link-hover-color: #449DD1 !important; - --link-hover-underline-color: #449DD1 !important; - --link-background-color: #449DD1 !important; + --link-hover-color: #449DD1; + --link-hover-underline-color: #449DD1; + --link-background-color: #449DD1; +} + +#menu a { + color: var(--secondary); +} +#menu a:hover { + color: var(--link-hover-color); +} +#menu .active { + color: var(--link-hover-color) !important; + box-shadow: 0 2px 0 var(--link-hover-color); +} + +.nav { + flex-direction: column; } .first-entry > header:nth-child(1) { |