From c0e7c4f0ae974f3fafece67d450c3b02bc076393 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 28 Oct 2020 20:43:12 +0100 Subject: [PATCH] Add default colors for background, text and hyperlinks. Colors for hyperlinks are taken from . Fixes: #104 --- assets/css/codeberg-docs.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/css/codeberg-docs.css b/assets/css/codeberg-docs.css index 96dd719..ab5b070 100644 --- a/assets/css/codeberg-docs.css +++ b/assets/css/codeberg-docs.css @@ -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; }