diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..556d8c6
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,16 @@
+{{ define "main" }}
+
+
+{{ end }}
diff --git a/layouts/500.html b/layouts/500.html
new file mode 100644
index 0000000..17c5705
--- /dev/null
+++ b/layouts/500.html
@@ -0,0 +1,16 @@
+{{ define "main" }}
+
+
+{{ end }}
diff --git a/static/css/styles.css b/static/css/styles.css
index 2b81b96..62deead 100644
--- a/static/css/styles.css
+++ b/static/css/styles.css
@@ -185,6 +185,12 @@ html {
object-fit: contain;
}
+.link-block {
+ display: inline-flex;
+ align-items: center;
+
+}
+
article > a {
text-decoration: none;
display: flex;
@@ -198,13 +204,17 @@ article > a {
article > a:hover {
background: black;
+ transition: background 200ms linear;
}
.post {
- margin-right: 10vw;
- margin-left: 10vw;
+ margin-right: 7vw;
+ margin-left: 7vw;
margin-top: 3vh;
margin-bottom: 1vh;
+ padding: 3vh 3vw;
+ background-color: rgba(11,11,12,0.4);
+ border-radius: 5px;
}
img {
diff --git a/themes/clortox/layouts/404.html b/themes/clortox/layouts/404.html
deleted file mode 100644
index e69de29..0000000