-
-
Save fallen90/151ead8b19314f03465869ce1912ce3a to your computer and use it in GitHub Desktop.
styles.css for VSCODE custom css loader
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
/** italics **/ | |
[data-mode-id="typescript"] .mtki { | |
font-family: 'Gochi Hand'; | |
font-weight: 600; | |
font-size: 21px; | |
font-style: normal; | |
} | |
[data-mode-id="typescript"] .mtk3.mtki { | |
color: #b5b5b5 !important; | |
} | |
[data-mode-id="javascript"] .mtki { | |
font-family: 'Gochi Hand'; | |
font-weight: 600; | |
font-size: 21px; | |
font-style: normal; | |
} | |
[data-mode-id="javascript"] .mtk3.mtki { | |
color: #b5b5b5 !important; | |
} | |
/** disable italic on html **/ | |
[data-mode-id="html"] .mtki { | |
font-style: normal; | |
font-weight: bold; | |
color: #00c13b; /** bland green **/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment