From d0deda9b496f582374f71bf25dd97b8410387a21 Mon Sep 17 00:00:00 2001 From: frosty Date: Fri, 22 Aug 2025 08:54:40 -0400 Subject: initial commit --- themes/orca/assets/style.css | 78 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 themes/orca/assets/style.css (limited to 'themes/orca/assets') 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; +} -- cgit v1.2.3