diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-02-05 17:38:35 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-02-05 17:38:35 +0100 |
commit | 6ddbbe145f70fd76f8c60a2eb86efdebd6768d06 (patch) | |
tree | 99222461d28700adf4e3de465952fa9dd0513524 /styles | |
parent | e17bc96e330077454172e9750053491faeccc8fd (diff) |
more settings page
Diffstat (limited to 'styles')
-rw-r--r-- | styles/global.css | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/styles/global.css b/styles/global.css index a59d911..0152efd 100644 --- a/styles/global.css +++ b/styles/global.css @@ -18,6 +18,15 @@ html, body { padding: 0; } +/* subsection font size */ +h2 { font-size: 20px; } + +/* subsubsection font size */ +h3 { + font-size: .9rem; + padding-bottom: 6px; +} + /* global font zize */ p, b, i, span, td, th { font-size: 15px; } @@ -25,9 +34,7 @@ p, b, i, span, td, th { font-size: 15px; } body { padding-left: 48px; } /* font */ -html { - font-family: "Inter"; -} +html { font-family: "Inter"; } /* background color */ html { background-color: var(--page-background); } @@ -40,7 +47,7 @@ a { color: var(--text); } .CenteredPageInner > * { text-align: left; } /* line height reset */ -h1, h2, p, b, span, td, th { +h1, h2, h3, p, b, span, td, th { margin: 0; line-height: 1.2; } |