1
0
mirror of https://github.com/aureliendavid/rsspreview.git synced 2025-08-25 12:55:35 +00:00

CSS: Declare text color to default black

Because background color is defined, the text may be not readable if users changed their default colors in the "Preferences" page of Firefox. So to ensure the text can be read if the defaults are changed, the text color too should be declared.
This commit is contained in:
Felix Stupp 2020-01-25 15:30:32 +01:00 committed by GitHub
parent 39d49f5e09
commit dd13667ef7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
html {
font: 3mm tahoma,arial,helvetica,sans-serif;
background-color: rgb(240, 240, 240);
color: rgb(0, 0, 0);
box-sizing: border-box;
}