Skip to content

Instantly share code, notes, and snippets.

@caasi
Forked from cowboycoded/rounded_box_gist.css
Created June 16, 2012 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save caasi/2941099 to your computer and use it in GitHub Desktop.
Save caasi/2941099 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{
background-color: #1D1D1D !important;
font-size: 8pt !important;
padding: 8px !important;
border-top: 1px solid #444 !important;
border-bottom: 1px solid #000 !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{
background-color: #E0E0E0 !important;
padding: 8px !important;
border: none !important;
-moz-border-radius-topleft: 10px;
-webkit-border-top-left-radius: 10px;
-moz-border-radius-topright: 10px;
-webkit-border-top-right-radius: 10px;
-webkit-box-shadow:inset 0 0 10px #999;
-moz-box-shadow:inset 0 0 10px #999;
box-shadow:inset 0 0 10px #999;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment