diff options
author | 53hornet <atc@53hor.net> | 2021-12-16 22:08:00 -0500 |
---|---|---|
committer | 53hornet <atc@53hor.net> | 2021-12-16 22:08:00 -0500 |
commit | dd04ad281d9123296be1a904cf647f8e7a232d3f (patch) | |
tree | f00d56f908dcd33ddf29c8a31bba8e831496fac9 /includes | |
parent | c3b77872285c05ed42359434d5c306304b8dfaeb (diff) | |
download | 53hor-dd04ad281d9123296be1a904cf647f8e7a232d3f.tar.xz 53hor-dd04ad281d9123296be1a904cf647f8e7a232d3f.zip |
feat: rescue post, colors, centered titles
Diffstat (limited to 'includes')
-rw-r--r-- | includes/style.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/includes/style.css b/includes/style.css index e3189fd..4da7343 100644 --- a/includes/style.css +++ b/includes/style.css @@ -10,7 +10,7 @@ --slate: #b9c2ca; --charcoal: #798d94; --white: white; - --box-radius: 0.25em; + --box-radius: 0.15em; --box-border: 0.5em solid var(--white); } @@ -57,7 +57,6 @@ nav svg rect { a:link { color: var(--slate); - background-color: var(--balboa); border-radius: var(--box-radius); } @@ -83,6 +82,11 @@ nav a:active { text-decoration: none; } +p code { + background-color: var(--charcoal); + border-radius: var(--box-radius); +} + pre { white-space: pre-wrap; display: block; @@ -107,6 +111,7 @@ blockquote { font-style: oblique; } +h1, header { text-align: center; } |