Created
September 15, 2017 20:13
-
-
Save vbuaraujo/f3b60b45790d6d043e81ed6c0da45a60 to your computer and use it in GitHub Desktop.
Fixed-font white-on-black user style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* AGENT_SHEET */ | |
@-moz-document url-prefix(http://), url-prefix(https://), url-prefix(file://), | |
url-prefix(about:sessionrestore), url-prefix(about:newtab) | |
{ | |
* { | |
color: #C0C0C0 !important; /*white !important;*/ | |
background: black !important; | |
font-family: Fixed, monospace !important; | |
font-size: 18px !important; /* force everything to use the same size */ | |
/*font-size: 14px !important; force everything to use the same size */ | |
letter-spacing: 0px !important; | |
text-shadow: none !important; | |
line-height: 1.5em ; | |
} | |
body { | |
font-size: 18px !important; | |
} | |
a:link { color: #A0A0FF !important; } | |
a:link * { color: inherit !important; } | |
a:visited { color: #00DD00 !important; } | |
a:visited * { color: #00DD00 !important; } | |
tt, code, pre { | |
font-family: monospace !important; | |
font-size: 0.8em !important; | |
} | |
/*img { | |
background: white !important; | |
}*/ | |
} | |
@-moz-document url-prefix(https://www.youtube.com/) { | |
div { background: transparent !important; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment