Created
November 12, 2017 04:24
-
-
Save natanfelles/8c1df61c8c533eac619daee530720add to your computer and use it in GitHub Desktop.
Sublime Markdown Popups Styles for Theme - One Dark
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
/** | |
* Sublime Markdown Popups Styles for Theme - One Dark | |
* | |
* @author Natan Felles <[email protected]> | |
*/ | |
body { | |
background-color: #2f343f; | |
color: #abb2bf; | |
font-size: 0.9rem; | |
} | |
div.mdpopups { | |
font-size: .9rem; | |
} | |
.mdpopups .highlight { | |
border: 1px solid #191b21; | |
border-radius: 0; | |
font-size: 0.9rem; | |
} | |
.mdpopups div.highlight, | |
.mdpopups pre.highlight { | |
font-size: 0.9rem; | |
} | |
code { | |
padding: 0.05rem 0.25rem; | |
background-color: #282c34; | |
border-radius: 0.25rem; | |
} | |
.mdpopups hr { | |
border-color: #191b21; | |
} | |
a { | |
color: #528bff; | |
text-decoration: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment