summaryrefslogtreecommitdiff
path: root/main.css
diff options
context:
space:
mode:
authorBenjamin Sanders <ben@sanders.life>2025-02-07 07:33:31 -0500
committerBenjamin Sanders <ben@sanders.life>2025-02-07 07:33:31 -0500
commita77bde84e2659d9df4899da8a5f31136372398cc (patch)
treefd7d1e47cc5ef23f1f11d34c70a099d9fa4f5b7b /main.css
initial commit
Diffstat (limited to 'main.css')
-rw-r--r--main.css56
1 files changed, 56 insertions, 0 deletions
diff --git a/main.css b/main.css
new file mode 100644
index 0000000..04d7aeb
--- /dev/null
+++ b/main.css
@@ -0,0 +1,56 @@
+html,body {
+ background: black;
+ font-family: Monospace;
+ color: lightgreen;
+}
+
+#website-container {
+ width: 620px;
+}
+
+ul.navigation {
+ list-style-type: none;
+ display: block;
+}
+
+ul.navigation li {
+ display: inline;
+}
+
+ul.navigation a {
+ color: lightgreen;
+ text-decoration: none;
+}
+
+ul.navigation a:hover {
+ text-decoration: underline;
+}
+
+ul.posts {
+ list-style-type: none;
+}
+
+ul.posts a {
+ color: lightgreen;
+ text-decoration: none;
+}
+
+ul.posts a:hover { text-decoration: underline; }
+
+/* resources.html styles */
+.home-social-links a {
+ color: lightgreen;
+ text-decoration: none;
+}
+
+/* Base Tags */
+img { width: 100%; }
+
+a {
+ color: lightgreen;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+} \ No newline at end of file