summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-08-05 20:23:15 +0300
committerLars Wirzenius <liw@liw.fi>2021-08-05 20:23:15 +0300
commit7c7d026ef07d69b2660a9a6269e50422a2b0e4ce (patch)
tree1b06727fad644ea55e7596c23d202787c2e373f4
parent6c73a1cf04d3f0f3adcb56b9f02bb06f90653d5d (diff)
downloadobnam.org-7c7d026ef07d69b2660a9a6269e50422a2b0e4ce.tar.gz
style: make page date use monospace; style tables
Tables now don't use lines to make a grid. Instead, the headings are in bold, and every other line has a different background color. Because this pleases me. Sponsored-by: author
-rw-r--r--style.css23
1 files changed, 22 insertions, 1 deletions
diff --git a/style.css b/style.css
index fad5a22..b905050 100644
--- a/style.css
+++ b/style.css
@@ -61,7 +61,11 @@ div.pagefooter {
margin-top: 3em;
}
-span.date {
+span.date, .pagedate {
+ font-family: monospace;
+}
+
+.tags {
font-family: monospace;
}
@@ -131,3 +135,20 @@ div.wisdom p.quote {
.normalPC { font-size: 120%; }
.bigPC { font-size: 150%; }
.biggestPC { font-size: 200%; }
+
+
+table {
+ border: 0px;
+ width: 100%;
+}
+
+th {
+ font-weight: bold;
+}
+
+tr {
+}
+
+tr:nth-child(even) {
+ background-color: #f2f2f2;
+}