diff options
Diffstat (limited to 'static/stylesheet.css')
| -rw-r--r-- | static/stylesheet.css | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/static/stylesheet.css b/static/stylesheet.css new file mode 100644 index 0000000..df916fb --- /dev/null +++ b/static/stylesheet.css @@ -0,0 +1,36 @@ +body +{ + background-color: white; + color: black; + max-width: 80ch; + margin: auto; + font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif; + font-size: 1.2em; +} + +nav { text-align: center; } + +hr +{ + border: 0; + border-bottom: 1px dashed; +} + +img +{ + display: block; + margin: auto; + margin-top: 1em; + margin-bottom: 1em; +} + +@media (prefers-color-scheme: dark) +{ + body + { + background-color: #1e1f21; + color: #eeeff1; + } + :link { color: #bad7ff; } + :visited { color: #f6baff; } +} |
