diff options
author | Cara Salter <cara@devcara.com> | 2021-12-22 14:02:12 -0500 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2021-12-22 14:02:23 -0500 |
commit | 995b7ebe2552c9db528365e7ccc5a331523ac50c (patch) | |
tree | 610959206aba5066b91c6c6492d9c0669c8c6946 /statics/custom.css | |
parent | e362200d1a61e3d858b69c2448928e799912db5e (diff) | |
download | site-995b7ebe2552c9db528365e7ccc5a331523ac50c.tar.gz site-995b7ebe2552c9db528365e7ccc5a331523ac50c.zip |
Customize post listings
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; +} |