aboutsummaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-04-12 15:24:36 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-04-12 15:24:36 -0500
commit5b537ba863c46cd0c3a820edba9e9286dab5c0a9 (patch)
tree9e4da6c1b8f3b4bce740b5751b2044fb5d48b168 /css
parent0a2350c75ebdf99bb2ac74c5243242ee3a1c2502 (diff)
org-based setup
Diffstat (limited to 'css')
-rw-r--r--css/stylesheet.css57
1 files changed, 57 insertions, 0 deletions
diff --git a/css/stylesheet.css b/css/stylesheet.css
new file mode 100644
index 0000000..3bc204e
--- /dev/null
+++ b/css/stylesheet.css
@@ -0,0 +1,57 @@
+* {
+ box-sizing: border-box;
+}
+
+body {
+ font-family: Georgia, Times;
+ font-size: 20px;
+ background-color: #fff8ea;
+ color: #594545;
+ width: 700px;
+ max-width: calc(100% - 20px);
+ margin: auto;
+}
+
+h1 {
+ color: #815b5b;
+ font-family: Helvetica, Tahoma, Arial;
+ font-weight: normal;
+}
+
+h2,
+h3,
+h4,
+h5,
+h6 {
+ color: #815b5b;
+ font-weight: normal;
+}
+
+a {
+ color: darkblue;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+.topnav {
+ color: #fff8ea;
+ background-color: #594545;
+ margin-top: 10px;
+ padding: 5px 5px 5px 5px;
+}
+
+.topnav a {
+ color: #fff8ea;
+ padding: 10px 10px;
+}
+
+@media screen and (max-width: 700px) {
+ .topnav a {
+ float: none;
+ display: block;
+ text-align: left;
+ }
+}