diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 15f22a3..9439a9f 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -4,7 +4,7 @@
{{ range .Pages }}
-
-
+
{{ partial "metadata.html" . }}
{{ if .Params.cws }}
{{ else }}
diff --git a/static/css/style.css b/static/css/style.css
index 5d1583a..ff56d01 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -2,7 +2,7 @@
@media (prefers-color-scheme: dark) {
body {
background-color: #1f2023;
- color: #E7DBDA;
+ color: #FAFAFA;
}
a {
text-decoration: none;
@@ -13,30 +13,22 @@
color: #E7DBDA;
}
.author-name {
- background-color: #B5ADAD;
+ background-color: #ffffff;
+ color: #F14B25;
border-radius: 4px;
padding: 5px 10px;
- font-family: 'Liberation Mono', monospace;
- }
-
- .author-name:hover {
- background-color: #CEC4C4;
+ font-family: monospace;
}
.tag {
- background-color: #34353B;
border-radius: 4px;
padding: 5px 10px;
- font-family: 'Liberation Mono', monospace;
- }
-
- .tag:hover {
- background-color: #2D2E33;
+ font-family: monospace;
}
}
/* Light Mode */
@media (prefers-color-scheme: light) {
body {
- background-color: #E7DBDA;
+ background-color: #FAFAFA;
}
a {
text-decoration: none;
@@ -47,22 +39,15 @@
color: #1f2023;
}
.author-name {
- background-color: #34353B;
+ background-color: #000000;
border-radius: 4px;
padding: 5px 10px;
- font-family: 'Liberation Mono', monospace;
- }
- .author-name:hover {
- background-color: #2D2E33;
+ font-family: monospace;
}
.tag {
- background-color: #B5ADAD;
border-radius: 4px;
padding: 5px 10px;
- font-family: 'Liberation Mono', monospace;
- }
- .tag:hover {
- background-color: #CEC4C4;
+ font-family: monospace;
}
}
@@ -162,6 +147,7 @@ nav {
/* For Content Warnings */
label {
display: none;
+ font-size: 22px;
}
#cw:checked + label {