mirror of
https://codeberg.org/Codeberg/Documentation.git
synced 2026-06-16 05:13:54 -07:00
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:
parent
f94bd91090
commit
c0e7c4f0ae
1 changed files with 4 additions and 1 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue