Skip to content

Instantly share code, notes, and snippets.

@snaka
Created December 18, 2008 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save snaka/37574 to your computer and use it in GitHub Desktop.
Save snaka/37574 to your computer and use it in GitHub Desktop.
/*
custom style for gist
div.section と組み合わせて適用範囲を限定することで、標準の.gist-xxxxの設定を上書きしている。
*/
div.section .gist .gist-file .gist-data pre{
-moz-border-radius-bottomleft: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
background: #000000 !important;
margin: 0;
}
div.section .gist .gist-file {
border: none;
}
div.section .gist .gist-file .gist-meta {
-moz-border-radius-bottomleft:8px;
-moz-border-radius-bottomright:8px;
-webkit-border-bottom-left-radius:8px;
-webkit-border-bottom-right-radius:8px;
background-color: #7A321D;
color: #c7c7c7;
}
div.section .gist .gist-file .gist-meta a{
color: #f8f8f8;
}
div.section .gist .gist-file .gist-meta a:hover {
color:#FFF462;
}
div.section .gist ,
div.section .gist-syntax .k ,
div.section .gist-syntax .o ,
div.section .gist-syntax .gd ,
div.section .gist-syntax .gd .x ,
div.section .gist-syntax .ge ,
div.section .gist-syntax .gi ,
div.section .gist-syntax .gi .x ,
div.section .gist-syntax .kc ,
div.section .gist-syntax .kd ,
div.section .gist-syntax .kp ,
div.section .gist-syntax .kr ,
div.section .gist-syntax .ow
{
color: #ffffff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment