diff options
author | metamuffin <metamuffin@disroot.org> | 2022-08-30 13:23:06 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-08-30 13:23:06 +0200 |
commit | 14f19ee72aa45198d58d5c271e01bfc54a13d273 (patch) | |
tree | 2bedcfdeda62cb73e4e2746dd80fd219244ce514 /content/style.css | |
parent | 5eaa7b481abeeb939255be975022284a4268535e (diff) | |
download | metamuffin-blog-14f19ee72aa45198d58d5c271e01bfc54a13d273.tar metamuffin-blog-14f19ee72aa45198d58d5c271e01bfc54a13d273.tar.bz2 metamuffin-blog-14f19ee72aa45198d58d5c271e01bfc54a13d273.tar.zst |
style
Diffstat (limited to 'content/style.css')
-rw-r--r-- | content/style.css | 35 |
1 files changed, 27 insertions, 8 deletions
diff --git a/content/style.css b/content/style.css index 749fcae..dbfd2ea 100644 --- a/content/style.css +++ b/content/style.css @@ -1,19 +1,38 @@ +@import url("https://s.metamuffin.org/static/font-ubuntu/include.css"); + :root { - --font1: white; - --font2: #ff62fc; - --bg1: #1a051d; - --bg2: #3b1041; + --bg2: #202020; + --bg1: #101010; } body { - margin: 2em; + margin: 3em; background-color: var(--bg1); } -nav { +nav,article { + margin: 1em; background-color: var(--bg2); + padding: 1em; } -p,h1,h2,h3,h4,h5,h6,span { - color: var(--font1) +h1 {font-size: xx-large } +h2 {font-size: x-large } +h3 {font-size: large } + +p,h1,h2,h3,h4,h5,h6,span,li { font-family: "Ubuntu", sans-serif; } +h1,h2 { color: #b575ff } +h3 { color: #ff83fd } +p,span,li { color: white; margin-left: 2em } +a { color: #82a8ff; font-style: italic; text-decoration: underline } +hr { border: 1px solid grey } + +pre,code { + color: #eeeeee; + font-family: monospace; + background-color: black; + border: 0px solid transparent; + border-radius: 5px; + padding: 0.2em; } +pre { margin-left: 4em; margin-right: 4em; } |