From 5b537ba863c46cd0c3a820edba9e9286dab5c0a9 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Fri, 12 Apr 2024 15:24:36 -0500 Subject: org-based setup --- css/stylesheet.css | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 css/stylesheet.css (limited to 'css/stylesheet.css') 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; + } +} -- cgit v1.2.3