Add default colors for background, text and hyperlinks.

Colors for hyperlinks are taken from
<https://html.spec.whatwg.org/multipage/rendering.html#phrasing-content-3>.

Fixes: #104
This commit is contained in:
tastytea 2020-10-28 20:43:12 +01:00
parent f94bd91090
commit c0e7c4f0ae
No known key found for this signature in database
GPG key ID: CFC39497F1B26E07

View file

@ -1,5 +1,8 @@
html, body { width: 100%; height: 100%; margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; margin: 0; padding: 0; background-color: white; color: black; }
body { display: flex; flex-direction: column; font-family: "Inter", sans-serif; font-size: 13pt; font-weight: 300; }
:link { color: #0000EE; }
:visited { color: #551A8B; }
:link:active, :visited:active { color: #FF0000; }
header { height: 60px; margin-top: 30px; margin-bottom: 60px; }
header > .container { display: flex; align-items: center; }