Created
April 8, 2011 18:13
-
-
Save cowboycoded/910409 to your computer and use it in GitHub Desktop.
styles for rounded box gist
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
.gist{ | |
margin: 15px 0 !important; | |
} | |
.gist-file{ | |
border: none !important; | |
} | |
.gist-meta{ | |
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; | |
} | |
.gist-data{ | |
padding: 15px !important; | |
border: 1px solid #D2d2d2 !important; | |
border-bottom: none !important; | |
-moz-border-radius-topleft: 10px; | |
-webkit-border-top-left-radius: 10px; | |
-moz-border-radius-topright: 10px; | |
-webkit-border-top-right-radius: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment