1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-11-10 00:12:09 +00:00

CSS: back to old line height

Line height was too high before.
This commit is contained in:
Rohan Kumar 2021-01-28 11:00:47 -08:00
parent d3055b270e
commit a75c49d54a
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479

View file

@ -1,6 +1,6 @@
/* CSS that adds the bare minimum for a simple layout */
/* This site's CSS only does 9 major things:
/* This site's CSS only does 10 major things:
* 1. sans-serif instead of serif for low-res screens.
* 2. Consistent font size; <pre> and <code> shouldn't be smaller.
* 3. max text width for readability
@ -11,18 +11,25 @@
* 7. Horizontally center inline images; left-aligned stick out.
* 8. Padding fixes so the above changes don't make elements misalign.
* 9. dark.css changes a few colors if the browser wants dark mode.
* 10. Line height for consistent vertical rhythm
* Everything else is browser defaults:
* default fonts, non-dark-mode colors, etc.
*/
body {
font: 16px sans-serif;
line-height: 1.75rem;
line-height: 1.5rem;
margin: auto;
max-width: 50rem;
padding: 0 5%;
}
h1,
h2,
h3 {
line-height: 1.75rem;
}
nav ul {
/* nav links should look more prominent than normal links */
font-size: 1.25rem;