diff options
Diffstat (limited to 'statics/custom.css')
-rw-r--r-- | statics/custom.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/statics/custom.css b/statics/custom.css index 827bd23..15045f4 100644 --- a/statics/custom.css +++ b/statics/custom.css @@ -3,6 +3,10 @@ body { font-family: sans-serif; } +a { + background-color: unset; +} + /* Base container */ .container { margin: auto; /* centered */ @@ -31,6 +35,7 @@ body { padding-top: 0.4rem; } +/* Front page columns */ .two-column { display: flex; justify-content: center; @@ -39,3 +44,11 @@ body { .inner-column { flex: 50%; } + +/* Post list */ +.post-list { + list-style-type: none; +} +.post-item { + padding: 0.5rem; +} |