diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-03-26 18:49:53 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-03-26 18:49:53 +0100 |
commit | 1fafddfd1084753aeb7b6429065e761d708809bb (patch) | |
tree | 3d0c447d4d1ef673e37b00aca6859b73b3127e09 /styles/globals.css | |
parent | c0318023f8b8f52347fa9fd7c654e42b7e0f68aa (diff) |
BIG progress
Diffstat (limited to 'styles/globals.css')
-rw-r--r-- | styles/globals.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/styles/globals.css b/styles/globals.css index d633303..6c5bf7f 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -1,5 +1,44 @@ html, body { padding: 0; margin: 0; + + background-color: var(--bg); + color: var(--fg); +} + +::selection { + background-color: var(--fire-opal); +} + +h1, h2, h3 { + font-weight: 700; + margin: 0; +} + +h1 { font-size: 64px; } +h2 { font-size: 48px; } +h3 { font-size: 32px; } + +.subtile { + font-style: italic; + opacity: .75; + color: var(--heliotrope-gray); +} + +.contentWrapper a { + color: var(--fire-opal); + text-decoration: none; + position: relative; + display: inline-block; +} + +.contentWrapper a::after { + content: ''; + position: absolute; + left: 0; + right: 0; + bottom: 0; + height: 1px; + background-color: var(--fire-opal); } |