diff options
author | Prefetch | 2019-06-09 22:36:33 +0200 |
---|---|---|
committer | Prefetch | 2019-06-09 22:36:33 +0200 |
commit | cb6c1cb648ee9943b44cd7d76a7153d38072722e (patch) | |
tree | 3734047c761e8240b3c2cfdbcc5d709ee472c691 /static | |
parent | 2dacb951ee001f8fdf4e2b37e2060f6c74841c9f (diff) |
Center generated headings
Diffstat (limited to 'static')
-rw-r--r-- | static/main.css | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/static/main.css b/static/main.css index b79aef8..f73c997 100644 --- a/static/main.css +++ b/static/main.css @@ -12,9 +12,18 @@ a { color:#61afef; } -h1 { font-size:2rem; } -h2 { font-size:1.5rem; } -h3 { font-size:1rem; } +h1 { + font-size:2rem; + text-align:center; +} +h2 { + font-size:1.5rem; + text-align:center; +} +h3 { + font-size:1rem; + text-align:center; +} .content { min-height: calc(100vh - 20ch); } |