1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
| // This File is imported last, and will override other styles in the cascade
// Add styles here to make changes without digging in too much
.pre-code {
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
overflow: scroll;
overflow-y: hidden;
display: block;
padding: .8em;
overflow-x: auto;
line-height: 1.45em;
background: #181818 !important;
color: #F8F8F8 !important;
span { color: #F8F8F8 !important; }
span { font-style: normal !important; font-weight: normal !important; }
.hll { background-color: #ffffcc !important }
.c { color: #5F5A60 !important; font-style: italic !important } /* Comment */
.err { border:#B22518; } /* Error */
.k { color: #CDA869 !important } /* Keyword */
.cm { color: #5F5A60 !important; font-style: italic !important } /* Comment.Multiline */
.cp { color: #5F5A60 !important } /* Comment.Preproc */
.c1 { color: #5F5A60 !important; font-style: italic !important } /* Comment.Single */
.cs { color: #5F5A60 !important; font-style: italic !important } /* Comment.Special */
.gd { background: #420E09 } /* Generic.Deleted */
.ge { font-style: italic !important } /* Generic.Emph */
.gr { background: #B22518 } /* Generic.Error */
.gh { color: #000080 !important; font-weight: bold !important } /* Generic.Heading */
.gi { background: #253B22 } /* Generic.Inserted */
.go { } /* Generic.Output */
.gp { font-weight: bold !important } /* Generic.Prompt */
.gs { font-weight: bold !important } /* Generic.Strong */
.gu { color: #800080 !important; font-weight: bold !important } /* Generic.Subheading */
.gt { } /* Generic.Traceback */
.kc { } /* Keyword.Constant */
.kd { color: #e9df8f !important; } /* Keyword.Declaration */
.kn { } /* Keyword.Namespace */
.kp { color: #CF6A4C !important } /* Keyword.Pseudo */
.kr { } /* Keyword.Reserved */
.kt { } /* Keyword.Type */
.m { } /* Literal.Number */
.s { color: #8F9D6A !important } /* Literal.String */
.na { color: #F9EE98 !important } /* Name.Attribute */
.nb { color: #CDA869 !important } /* Name.Builtin */
.nc { color: #9B703F !important; font-weight: bold !important } /* Name.Class */
.no { color: #7587A6 !important } /* Name.Constant */
.nd { color: #7587A6 !important } /* Name.Decorator */
.ni { color: #CF6A4C !important; font-weight: bold !important } /* Name.Entity */
.nf { color: #9B703F !important; font-weight: bold !important } /* Name.Function */
.nn { color: #9B703F !important; font-weight: bold !important } /* Name.Namespace */
.nt { color: #CDA869 !important; font-weight: bold !important } /* Name.Tag */
.nv { color: #7587A6 !important } /* Name.Variable */
.o { color: #CDA869 !important } /* Operator */
.ow { color: #AA22FF !important; font-weight: bold !important } /* Operator.Word */
.w { color: #141414 !important } /* Text.Whitespace */
.mf { color: #CF6A4C !important } /* Literal.Number.Float */
.mh { color: #CF6A4C !important } /* Literal.Number.Hex */
.mi { color: #CF6A4C !important } /* Literal.Number.Integer */
.mo { color: #CF6A4C !important } /* Literal.Number.Oct */
.sb { color: #8F9D6A !important } /* Literal.String.Backtick */
.sc { color: #8F9D6A !important } /* Literal.String.Char */
.sd { color: #8F9D6A !important; font-style: italic !important; } /* Literal.String.Doc */
.s2 { color: #8F9D6A !important } /* Literal.String.Double */
.se { color: #F9EE98 !important; font-weight: bold !important; } /* Literal.String.Escape */
.sh { color: #8F9D6A !important } /* Literal.String.Heredoc */
.si { color: #DAEFA3 !important; font-weight: bold !important; } /* Literal.String.Interpol */
.sx { color: #8F9D6A !important } /* Literal.String.Other */
.sr { color: #E9C062 !important } /* Literal.String.Regex */
.s1 { color: #8F9D6A !important } /* Literal.String.Single */
.ss { color: #CF6A4C !important } /* Literal.String.Symbol */
.bp { color: #00aaaa !important } /* Name.Builtin.Pseudo */
.vc { color: #7587A6 !important } /* Name.Variable.Class */
.vg { color: #7587A6 !important } /* Name.Variable.Global */
.vi { color: #7587A6 !important } /* Name.Variable.Instance */
.il { color: #009999 !important } /* Literal.Number.Integer.Long */
}
.highlight .line-numbers span, html .gist .gist-file .gist-syntax .gist-highlight .line-numbers span {
color: #ffffcc !important;
background-color: #181818 !important;
}
.highlight table td .gutter {
background-color: #181818 !important;
}
.highlight table, .highlight table td {
margin: 0;
border: none;
padding: 0;
}
table {
margin: 10px 0 15px 0;
border-collapse: collapse;
border: 1px solid #cccccc;
}
td,th {
border: 1px solid #cccccc;
padding: 3px 10px;
}
th {
padding: 5px 10px;
}
|