diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/main.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/static/main.css b/static/main.css new file mode 100644 index 0000000..0394165 --- /dev/null +++ b/static/main.css @@ -0,0 +1,29 @@ +body { + background-color:#282c34; + color:#abb2bf; + max-width:72ch; + text-align:justify; + margin:auto; + padding:2ch; +} + +a { + text-decoration:none; + color:#61afef; +} + +.content { min-height: calc(100vh - 20ch); } + +.navbar a:link { color:#abb2bf; } +.navbar a:visited { color:#abb2bf; } +.navbar a:focus { color:#61afef; } +.navbar a:hover { color:#61afef; } +.navbar a:active { color:#61afef; } +.navbar { + display:flex; + flex-direction:row; + font-size:24px; + text-align:right; +} +.navitem { flex:1; } +.navhome { text-align:left; } |