Last active
September 17, 2023 21:48
-
-
Save MaxMatti/49e877a2e3371c7cca962725e7f73213 to your computer and use it in GitHub Desktop.
Dark Mode (alpha)
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
/* ==UserStyle== | |
@name my.jdownloader.org | |
@version 20230917.21.43 | |
@namespace ? | |
==/UserStyle== */ | |
@-moz-document domain("my.jdownloader.org") { | |
body { | |
background-color: #000; | |
} | |
div#gwtContent, div.listHeader p { | |
color: #acc; | |
text-shadow: #000 0 1px 0; | |
background: unset; | |
background-color: #222; | |
} | |
div.listHeader { | |
background-color: #222; | |
} | |
html.no-touch .listRow:hover, | |
html.no-touch .listRowHover { | |
background-color: #444; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment