diff options
Diffstat (limited to 'themes/orca/assets')
-rw-r--r-- | themes/orca/assets/style.css | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/themes/orca/assets/style.css b/themes/orca/assets/style.css new file mode 100644 index 0000000..49c53ad --- /dev/null +++ b/themes/orca/assets/style.css @@ -0,0 +1,78 @@ +body { + margin: 0; + background-color: #090909; + color: white; +} + +a { + color: violet; +} + +header nav { + background: purple; + padding: 4px; + color: violet; +} + +header nav a { + text-decoration: none; + color: white; +} + +header nav a:hover { + text-decoration: underline; +} + +header nav *.right { + float: right; +} + +main { + margin: 0 0.8em; + max-width: 50em; +} + +main h1, +main h2, +main h3 { + border-bottom: 1px lightgray dotted; +} + +.post { + background: #191919; + padding: 0.5em; +} + +.post small.right { + float: right; +} + +hr { + border: none; + border-bottom: 1px lightgray dotted; +} + +header .title { + margin: 0.5em; +} + +header .title img { + max-width: 48px; + vertical-align: middle; + margin-right: 0.5em; +} + +header .title h2 { + margin: 0; + display: inline-block; + vertical-align: middle; +} + +header .title h2 a { + color: white; + text-decoration: none; +} + +header .title h2 a:hover { + text-decoration: underline; +} |