Created
March 16, 2012 03:05
-
-
Save wataru420/2048287 to your computer and use it in GitHub Desktop.
gist.css
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
<style>.gist{color:#000;}.gist div{padding:0;margin:0;}.gist .gist-file{border:1px solid #dedede;font-family:Monaco,'Courier New','DejaVu Sans Mono','Bitstream Vera Sans Mono',monospace;margin-bottom:1em;}.gist .gist-file .gist-meta{overflow:hidden;font-size:85%;padding:.5em;color:#666;background-color:#eaeaea;}.gist .gist-file .gist-meta a{color:#369;}.gist .gist-file .gist-meta a:visited{color:#737;}.gist .gist-file .gist-data{overflow:auto;word-wrap:normal;background-color:#f8f8ff;border-bottom:1px solid #ddd;font-size:100%;}.gist .gist-file .gist-data pre{font-family:'Bitstream Vera Sans Mono','Courier',monospace;background:transparent !important;margin:0 !important;border:none !important;padding:.25em .5em .5em .5em !important;}.gist .gist-file .gist-data .gist-highlight{background:transparent !important;}.gist .gist-file .gist-data .gist-line-numbers{background-color:#ececec;color:#aaa;border-right:1px solid #ddd;text-align:right;}.gist .gist-file .gist-data .gist-line-numbers span{clear:right;display:block;}.gist-syntax{background:#fff;}.gist-syntax .c{color:#998;font-style:italic}.gist-syntax .err{color:#a61717;background-color:#e3d2d2}.gist-syntax .k{color:#000;font-weight:bold;background-color:#F8F8FF}.gist-syntax .o{color:#000;font-weight:bold}.gist-syntax .cm{color:#998;font-style:italic}.gist-syntax .cp{color:#999;font-weight:bold}.gist-syntax .c1{color:#998;font-style:italic}.gist-syntax .cs{color:#999;font-weight:bold;font-style:italic}.gist-syntax .gd{color:#000;background-color:#fdd}.gist-syntax .gd .x{color:#000;background-color:#faa}.gist-syntax .ge{color:#000;font-style:italic}.gist-syntax .gr{color:#a00}.gist-syntax .gh{color:#999}.gist-syntax .gi{color:#000;background-color:#dfd}.gist-syntax .gi .x{color:#000;background-color:#afa}.gist-syntax .go{color:#888}.gist-syntax .gp{color:#555}.gist-syntax .gs{font-weight:bold}.gist-syntax .gu{color:#aaa}.gist-syntax .gt{color:#a00}.gist-syntax .kc{color:#000;font-weight:bold}.gist-syntax .kd{color:#000;font-weight:bold}.gist-syntax .kp{color:#000;font-weight:bold}.gist-syntax .kr{color:#000;font-weight:bold}.gist-syntax .kt{color:#458;font-weight:bold}.gist-syntax .m{color:#099}.gist-syntax .s{color:#d14}.gist-syntax .na{color:#008080}.gist-syntax .nb{color:#0086b3}.gist-syntax .nc{color:#458;font-weight:bold}.gist-syntax .no{color:#008080}.gist-syntax .ni{color:#800080}.gist-syntax .ne{color:#900;font-weight:bold}.gist-syntax .nf{color:#900;font-weight:bold}.gist-syntax .nn{color:#555}.gist-syntax .nt{color:#000080}.gist-syntax .nv{color:#008080}.gist-syntax .ow{color:#000;font-weight:bold}.gist-syntax .w{color:#bbb}.gist-syntax .mf{color:#099}.gist-syntax .mh{color:#099}.gist-syntax .mi{color:#099}.gist-syntax .mo{color:#099}.gist-syntax .sb{color:#d14}.gist-syntax .sc{color:#d14}.gist-syntax .sd{color:#d14}.gist-syntax .s2{color:#d14}.gist-syntax .se{color:#d14}.gist-syntax .sh{color:#d14}.gist-syntax .si{color:#d14}.gist-syntax .sx{color:#d14}.gist-syntax .sr{color:#009926}.gist-syntax .s1{color:#d14}.gist-syntax .ss{color:#990073}.gist-syntax .bp{color:#999}.gist-syntax .vc{color:#008080}.gist-syntax .vg{color:#008080}.gist-syntax .vi{color:#008080}.gist-syntax .il{color:#099}</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
.gist { | |
color: #000; | |
} | |
.gist div { | |
padding: 0; | |
margin: 0; | |
} | |
.gist .gist-file { | |
border: 1px solid #dedede; /* gray */ | |
font-family: Monaco, 'Courier New', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; | |
margin-bottom: 1em; | |
} | |
.gist .gist-file .gist-meta { | |
overflow: hidden; | |
font-size: 85%; | |
padding: .5em; | |
color: #666; | |
background-color: #eaeaea; | |
} | |
.gist .gist-file .gist-meta a { | |
color: #369; | |
} | |
.gist .gist-file .gist-meta a:visited { | |
color: #737; | |
} | |
.gist .gist-file .gist-data { | |
overflow: auto; | |
word-wrap: normal; | |
background-color: #f8f8ff; | |
border-bottom: 1px solid #ddd; | |
font-size: 100%; | |
} | |
.gist .gist-file .gist-data pre { | |
font-family: 'Bitstream Vera Sans Mono', 'Courier', monospace; | |
background: transparent !important; | |
margin: 0 !important; | |
border: none !important; | |
padding: .25em .5em .5em .5em !important; | |
} | |
.gist .gist-file .gist-data .gist-highlight { | |
background: transparent !important; | |
} | |
.gist .gist-file .gist-data .gist-line-numbers { | |
background-color: #ececec; | |
color: #aaa; | |
border-right: 1px solid #ddd; | |
text-align: right; | |
} | |
.gist .gist-file .gist-data .gist-line-numbers span { | |
clear: right; | |
display: block; | |
} | |
.gist-syntax { background: #ffffff; } | |
.gist-syntax .c { color: #999988; font-style: italic } /* Comment */ | |
.gist-syntax .err { color: #a61717; background-color: #e3d2d2 } /* Error */ | |
.gist-syntax .k { color: #000000; font-weight: bold } /* Keyword */ | |
.gist-syntax .o { color: #000000; font-weight: bold } /* Operator */ | |
.gist-syntax .cm { color: #999988; font-style: italic } /* Comment.Multiline */ | |
.gist-syntax .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ | |
.gist-syntax .c1 { color: #999988; font-style: italic } /* Comment.Single */ | |
.gist-syntax .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ | |
.gist-syntax .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ | |
.gist-syntax .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ | |
.gist-syntax .ge { color: #000000; font-style: italic } /* Generic.Emph */ | |
.gist-syntax .gr { color: #aa0000 } /* Generic.Error */ | |
.gist-syntax .gh { color: #999999 } /* Generic.Heading */ | |
.gist-syntax .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ | |
.gist-syntax .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ | |
.gist-syntax .go { color: #888888 } /* Generic.Output */ | |
.gist-syntax .gp { color: #555555 } /* Generic.Prompt */ | |
.gist-syntax .gs { font-weight: bold } /* Generic.Strong */ | |
.gist-syntax .gu { color: #aaaaaa } /* Generic.Subheading */ | |
.gist-syntax .gt { color: #aa0000 } /* Generic.Traceback */ | |
.gist-syntax .kc { color: #000000; font-weight: bold } /* Keyword.Constant */ | |
.gist-syntax .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */ | |
.gist-syntax .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */ | |
.gist-syntax .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */ | |
.gist-syntax .kt { color: #445588; font-weight: bold } /* Keyword.Type */ | |
.gist-syntax .m { color: #009999 } /* Literal.Number */ | |
.gist-syntax .s { color: #d14 } /* Literal.String */ | |
.gist-syntax .na { color: #008080 } /* Name.Attribute */ | |
.gist-syntax .nb { color: #0086B3 } /* Name.Builtin */ | |
.gist-syntax .nc { color: #445588; font-weight: bold } /* Name.Class */ | |
.gist-syntax .no { color: #008080 } /* Name.Constant */ | |
.gist-syntax .ni { color: #800080 } /* Name.Entity */ | |
.gist-syntax .ne { color: #990000; font-weight: bold } /* Name.Exception */ | |
.gist-syntax .nf { color: #990000; font-weight: bold } /* Name.Function */ | |
.gist-syntax .nn { color: #555555 } /* Name.Namespace */ | |
.gist-syntax .nt { color: #000080 } /* Name.Tag */ | |
.gist-syntax .nv { color: #008080 } /* Name.Variable */ | |
.gist-syntax .ow { color: #000000; font-weight: bold } /* Operator.Word */ | |
.gist-syntax .w { color: #bbbbbb } /* Text.Whitespace */ | |
.gist-syntax .mf { color: #009999 } /* Literal.Number.Float */ | |
.gist-syntax .mh { color: #009999 } /* Literal.Number.Hex */ | |
.gist-syntax .mi { color: #009999 } /* Literal.Number.Integer */ | |
.gist-syntax .mo { color: #009999 } /* Literal.Number.Oct */ | |
.gist-syntax .sb { color: #d14 } /* Literal.String.Backtick */ | |
.gist-syntax .sc { color: #d14 } /* Literal.String.Char */ | |
.gist-syntax .sd { color: #d14 } /* Literal.String.Doc */ | |
.gist-syntax .s2 { color: #d14 } /* Literal.String.Double */ | |
.gist-syntax .se { color: #d14 } /* Literal.String.Escape */ | |
.gist-syntax .sh { color: #d14 } /* Literal.String.Heredoc */ | |
.gist-syntax .si { color: #d14 } /* Literal.String.Interpol */ | |
.gist-syntax .sx { color: #d14 } /* Literal.String.Other */ | |
.gist-syntax .sr { color: #009926 } /* Literal.String.Regex */ | |
.gist-syntax .s1 { color: #d14 } /* Literal.String.Single */ | |
.gist-syntax .ss { color: #990073 } /* Literal.String.Symbol */ | |
.gist-syntax .bp { color: #999999 } /* Name.Builtin.Pseudo */ | |
.gist-syntax .vc { color: #008080 } /* Name.Variable.Class */ | |
.gist-syntax .vg { color: #008080 } /* Name.Variable.Global */ | |
.gist-syntax .vi { color: #008080 } /* Name.Variable.Instance */ | |
.gist-syntax .il { color: #009999 } /* Literal.Number.Integer.Long */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this code/CSS free to use? Or is there any licensing required?