Last active
March 20, 2016 02:10
-
-
Save nathan-cruz77/dcdf06bbe35f50158871 to your computer and use it in GitHub Desktop.
This file contains 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
/* Este arquivo deve ser salvo em: ~/.mozilla/firefox/<user-profile>/chrome/ | |
e tem como objetivo usar a fonte Arial em paginas que seriam renderizadas | |
com Helvetica. | |
*/ | |
@font-face{ | |
font-family: "Helvetica"; | |
src: local("Arial"); | |
} | |
/* As regras abaixo sao usadas para que o navegador possa usar um tema escuro */ | |
input:not(.textbox-input):not(.form-control):not([type='checkbox']) { | |
-moz-appearance: none !important; | |
background-color: white; | |
color: black; | |
} | |
#downloads-indicator-counter { | |
color: white; | |
} | |
textarea { | |
-moz-appearance: none !important; | |
background-color: white; | |
color: black; | |
} | |
select { | |
-moz-appearance: none !important; | |
background-color: white; | |
color: black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment