diff --git a/_layouts/corrupt_index.html b/_layouts/corrupt_index.html
index 53a0aec..9808a1b 100644
--- a/_layouts/corrupt_index.html
+++ b/_layouts/corrupt_index.html
@@ -22,7 +22,11 @@
diff --git a/_layouts/corrupt_post.html b/_layouts/corrupt_post.html
index 494e966..b70a364 100644
--- a/_layouts/corrupt_post.html
+++ b/_layouts/corrupt_post.html
@@ -21,7 +21,11 @@
diff --git a/src/styles/corrupt_layout.css b/src/styles/corrupt_layout.css
index 5d7cde9..d280887 100644
--- a/src/styles/corrupt_layout.css
+++ b/src/styles/corrupt_layout.css
@@ -23,6 +23,11 @@ header a {
height: 100%;
}
+header .wrapper {
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr;
+}
+
footer {
background-color: #202020;
border-top: 1px solid var(--hilite);
diff --git a/src/styles/corrupt_typog.css b/src/styles/corrupt_typog.css
index ea0900c..3a0c2eb 100644
--- a/src/styles/corrupt_typog.css
+++ b/src/styles/corrupt_typog.css
@@ -9,28 +9,34 @@ ul,ol,p {
}
a,a:visited,a:link,a:focus {
- text-decoration: none;
+ text-decoration: none;
color: darkgrey;
+ transition: color 0.5s;
}
a:hover {
color: white;
+ transition: color 0.5s;
}
nav a:hover {
color: var(--hilite);
+ transition: color 0.5s;
}
header div {
color: darkgrey; letter-spacing: 0.8em;
}
-header a:hover > div {
+header span {
color: white;
+ letter-spacing: 0.9em;
+ transition: color 2s;
}
-header div::first-letter {
- color: white;
+header a:hover > div > span {
+ color: var(--hilite);
+ transition: color 1s;
}
footer #email {