web-browsers: initial userstyles

These will be merged together once I learn how, but I am not supposed to be playing around with these now. Even if I am just testing how they work.
This commit is contained in:
Aminda Suomalainen 2024-05-30 13:18:44 +03:00
parent 4d6093e3c5
commit 745ecae2ab
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,20 @@
/* ==UserStyle==
@name Revert Sans
@updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/revert-serif.user.css
==/UserStyle== */
:root {
color-scheme: dark light !important;
}
* {
font-family: "Liberation Sans", "Arimo", "Arial", sans-serif;
color: revert !important;
background-color: revert !important;
}
a {
text-decoration: underline !important;
}
code,
pre {
font-family: "Liberation Mono", "Cousine", "Courier New", monospace;
}

View File

@ -0,0 +1,20 @@
/* ==UserStyle==
@name Revert Serif
@updateURL https://gitea.blesmrt.net/mikaela/gist/raw/branch/master/web-browsers/revert-serif.user.css
==/UserStyle== */
:root {
color-scheme: dark light !important;
}
* {
font-family: "Liberation Serif", "Tinos", "Times New Roman", serif;
color: revert !important;
background-color: revert !important;
}
a {
text-decoration: underline !important;
}
code,
pre {
font-family: "Liberation Mono", "Cousine", "Courier New", monospace;
}