Adds dark and light mode to fast.com
Hides some elements
Minimal fast.com by egirlcatnip

Details
Authoregirlcatnip
LicenseNo License
Categoryfast.com
Created
Updated
Size844 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name fast.com Enhanced
@namespace https://userstyles.world/user/egirlcatnip
@version 1.0.0
@description Light and Dark mode, hidden distractions
@author egirlcatnip
==/UserStyle== */
@-moz-document domain("fast.com") {
/* fast.com Enhanced*/
.powered-by-container,
.footer-container,
.language-selector-container {
display: none;
}
* {
font-family: monospace;
--background: #FFF;
--text: #111;
color: var(--text) !important;
}
@media (prefers-color-scheme: dark) {
* {
--background: transparent;
--text: #aaa;
}
}
html,
body {
background: var(--background);
}
.measurement-label,
.usage-info-container {
border-color: unset;
}
}