diff options
author | Jesús <heckyel@hyperbola.info> | 2020-10-07 17:15:08 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-10-07 17:15:08 -0500 |
commit | 97f3f9d3122f9af08bfe7499f5a169630f56014d (patch) | |
tree | 657beb4c3f5487d13690d359cb4725ddae592eeb | |
parent | bb90c74c0fd66ae02fb1e1f30f015df6c4057afc (diff) | |
download | web-base-97f3f9d3122f9af08bfe7499f5a169630f56014d.tar.lz web-base-97f3f9d3122f9af08bfe7499f5a169630f56014d.tar.xz web-base-97f3f9d3122f9af08bfe7499f5a169630f56014d.zip |
fix colors site
-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; } |