-
-
Save EricWarnke/4026120 to your computer and use it in GitHub Desktop.
styles for rounded box gist, Mover.io 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
/* Better styles for embedding GitHub Gists */ | |
.gist { | |
font-size: 13px; | |
line-height: 18px; | |
margin: 15px 0 !important; | |
width: 100%; | |
pre { | |
font-family: Menlo,Monaco,'Bitstream Vera Sans Mono','Courier New',monospace !important | |
} | |
.gist-meta { | |
font-family: Helvetica,Arial,sans-serif; | |
font-size: 13px !important; | |
border: 1px solid #D2d2d2 !important; | |
padding: 12px !important; | |
-moz-border-radius-bottomleft: 10px; | |
-webkit-border-bottom-left-radius: 10px; | |
-moz-border-radius-bottomright: 10px; | |
-webkit-border-bottom-right-radius: 10px; | |
display: none !important; | |
a { | |
color: #26a !important; | |
text-decoration: none | |
} | |
a:hover { | |
color: #0e4071 !important | |
} | |
} | |
.gist-file{ | |
border: none !important; | |
} | |
.color-black { | |
color: #000080; | |
} | |
.gist-data { | |
background-color: #F5F5F5 !important; | |
padding: 5px !important; | |
border: 1px solid #D2d2d2 !important; | |
-moz-border-radius: 10px; | |
-webkit-border: 10px; | |
-moz-border-radius: 10px; | |
border-radius: 10px; | |
} | |
.gist-raw { | |
float: right; | |
position: absolute; | |
right: 0; | |
top: 0; | |
border: 1px solid #CCC; | |
border-right: 0; | |
border-top: 0; | |
padding: 5px; | |
background-color: #fff; | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment