Skip to content

Instantly share code, notes, and snippets.

@cowboycoded
Created April 8, 2011 18:13
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save cowboycoded/910409 to your computer and use it in GitHub Desktop.
Save cowboycoded/910409 to your computer and use it in GitHub Desktop.
styles for rounded box gist
.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