diff options
| author | a73x <[email protected]> | 2024-12-01 13:27:00 +0000 |
|---|---|---|
| committer | a73x <[email protected]> | 2024-12-01 13:27:00 +0000 |
| commit | 8358c0765be412b1616aa978667f5d582e9e4901 (patch) | |
| tree | acb2e9efb40bb4b92f45020f96b269c89a0827ce /public/static | |
| parent | 013d56b78002dec56d8426b24b3a31107f22c7a7 (diff) | |
feat(css): centered content
Diffstat (limited to 'public/static')
| -rw-r--r-- | public/static/styles.css | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/public/static/styles.css b/public/static/styles.css index 7b9590e..1de3a03 100644 --- a/public/static/styles.css +++ b/public/static/styles.css @@ -20,19 +20,40 @@ blockquote { padding-left: 10px; } +hr { + border: none; + border-top: 1px dashed black; +} + code { font-family: "Mono"; } h1 { margin-bottom: 0; + font-size: 1.8rem; +} + +h2 { + margin-bottom: 0; + font-size: 1.5rem; +} + +h3 { + margin-bottom: 0; + font-size: 1.2rem; } body { - max-width: 70ch; font-family: "Mono"; } +main { + max-width: 70ch; + margin-left: auto; + margin-right: auto; +} + .nav ul { display: flex; list-style: none; |
