diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-01-05 20:39:59 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-01-05 20:39:59 +0100 |
commit | 9b2d93642e2c94ed96d08858f9e0f737eeba5489 (patch) | |
tree | 73a1af3c4ddbc4168c0fc4252c807c5899bc27e2 /src/global.css | |
parent | e5f33be1d2a348416bb63e055365fc0dd611c885 (diff) |
home pagina klaar
Diffstat (limited to 'src/global.css')
-rw-r--r-- | src/global.css | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/src/global.css b/src/global.css index 9ef59d4..5787cee 100644 --- a/src/global.css +++ b/src/global.css @@ -25,15 +25,27 @@ body { } /* font size */ -html { - font-size: 14px; -} +html { font-size: 14px; } /* link color fix */ -a { - color: var(--text); +a { color: var(--text); } + +/* centering misschien */ +.CenteredPageInner { text-align: center; } +.CenteredPageInner > * { text-align: left; } + +/* line height reset */ +h1, h2, p, span, td, th { + margin: 0; + line-height: 1.2; } -p { - margin: 6px 0; +/* table groottes met percentages werkt nu */ +table { table-layout: fixed; } + +/* table styles */ +td, th { + padding: 4px; + font-size: 15px; } + |