From d27a63d37547c03e3388ba6255246d1f37ddd26b Mon Sep 17 00:00:00 2001 From: Timur Ismagilov Date: Wed, 16 Jun 2021 01:38:15 +0500 Subject: [PATCH] Set default text color explicitly It was requested by a person because it broke how the site looked to them --- static/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/default.css b/static/default.css index d193908..abaaa9e 100644 --- a/static/default.css +++ b/static/default.css @@ -103,7 +103,7 @@ header { width: 100%; margin-bottom: 1rem; } *, *::before, *::after {box-sizing: border-box;} html { height:100%; padding:0; } body {height:100%; margin:0; } -body, input, kbd { font-size:16px; font-family: 'PT Sans', 'Liberation Sans', sans-serif;} +body, input, kbd { font-size:16px; font-family: 'PT Sans', 'Liberation Sans', sans-serif; color: black; } main > form {margin-bottom:1rem;} textarea {font-size:16px; font-family: 'PT Sans', 'Liberation Sans', sans-serif;}