summaryrefslogtreecommitdiff
path: root/themes/orca/assets
diff options
context:
space:
mode:
authorfrosty <passedgoandgot200@disroot.org>2025-08-22 08:54:40 -0400
committerfrosty <passedgoandgot200@disroot.org>2025-08-22 08:54:40 -0400
commitd0deda9b496f582374f71bf25dd97b8410387a21 (patch)
tree881986978be30b30635e543218c1cecbc74ac21f /themes/orca/assets
downloadwww-d0deda9b496f582374f71bf25dd97b8410387a21.tar.gz
www-d0deda9b496f582374f71bf25dd97b8410387a21.zip
initial commit
Diffstat (limited to 'themes/orca/assets')
-rw-r--r--themes/orca/assets/style.css78
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;
+}