diff options
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; } + |