Elizabeth Pankratz
about
blog
diff --git a/style.css b/style.css
index b923960..4f7a600 100644
--- a/style.css
+++ b/style.css
@@ -1,4 +1,7 @@
+/* Home page */
+
* {
+ /* Make CSS behave more sensibly... */
box-sizing: border-box;
margin: 0;
padding: 0;
@@ -77,8 +80,34 @@ body {
top: 0.5rem;
}
+
+/* Title and links */
+
h1 {
font-weight: bold;
font-size: 1.7rem;
margin-top: 1em;
+}
+
+.navigation {
+ font-size: 1.4rem;
+}
+
+.navigation a {
+ color: black;
+ text-decoration: none;
+ margin-left: -0.25ch;
+ border-left: 0.25ch solid rgba(0,0,0,0);
+ border-right: 0.25ch solid rgba(0,0,0,0);
+}
+
+.navigation a:visited {
+ color: black;
+}
+
+.navigation a:active,
+.navigation a:hover {
+ background-color:hsl(50, 100%, 70%);
+ border-left: 0.25ch solid hsl(50, 100%, 70%);
+ border-right: 0.25ch solid hsl(50, 100%, 70%);
}
\ No newline at end of file