about summary refs log tree commit diff
path: root/served
diff options
context:
space:
mode:
Diffstat (limited to 'served')
-rw-r--r--served/bits/bits.css4
-rw-r--r--served/styles/common.css5
-rw-r--r--served/styles/post.css10
3 files changed, 19 insertions, 0 deletions
diff --git a/served/bits/bits.css b/served/bits/bits.css
index 5e3000f..ee6c28c 100644
--- a/served/bits/bits.css
+++ b/served/bits/bits.css
@@ -14,4 +14,8 @@
 #two-up :nth-child(n) {
 	flex: 1 0 calc(var(--page-width) / 2 - 1rem);
 	max-width: 20rem;
+}
+
+h2 {
+	margin: 1rem 0;
 }
\ No newline at end of file
diff --git a/served/styles/common.css b/served/styles/common.css
index b9c959b..3b83a6d 100644
--- a/served/styles/common.css
+++ b/served/styles/common.css
@@ -5,6 +5,8 @@
 :root {
 	--text: #222;
 	--text-dim: #444;
+	--text-link: #037;
+	--text-link-visited: #730;
 	--background: #FFF;
 	--background-dim: #F8F0F0;
 	--color-a: rgb(11, 113, 126);
@@ -15,6 +17,8 @@
 	:root {
 		--text: #eee;
 		--text-dim: #bbb;
+		--text-link: #ddf;
+		--text-link-visited: #fed;
 		--background: #001;
 		--background-dim: #222;
 		--color-a: #3a8;
@@ -45,6 +49,7 @@ a {
 h1,
 h2,
 h3 {
+	margin: 0;
 	font-family: serif;
 }
 
diff --git a/served/styles/post.css b/served/styles/post.css
index 5913840..0cc6c82 100644
--- a/served/styles/post.css
+++ b/served/styles/post.css
@@ -2,4 +2,14 @@
 	--page-width: 34rem;
 	max-width: var(--page-width);
 	margin: 0 auto;
+}
+
+#navtree {
+	display: flex;
+	flex-direction: row;
+	flex-wrap: wrap;
+
+	margin-bottom: 1rem;
+
+	gap: 1rem;
 }
\ No newline at end of file