diff options
Diffstat (limited to 'grid.css')
-rw-r--r-- | grid.css | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,7 +1,8 @@ :root { --background: #555ED5; + --text: #000; + --secondary-text: #FFF; --secondary-background: #102027; - --text: #FFF; --h1: #FFF; --h2: #d5dce2; --h3: #bbc6ce; @@ -61,7 +62,7 @@ body { } ul.list-item > li > a { - color: var(--text); + color: var(--secondary-text); text-decoration: none; } @@ -81,7 +82,7 @@ label[for="navbar-toggle-cbox"] { } .navbar-burger span { - background-color: var(--text); + background-color: var(--secondary-text); display: block; height: 2px; transform-origin: center; @@ -95,6 +96,8 @@ label[for="navbar-toggle-cbox"] { grid-area: logo-name; justify-self: center; align-self: center; + + text-decoration: none; margin-top: 0.5rem; margin-bottom: 0.5rem; } |