blob: 0a82f6597b60313ba627848dde9d97c3e8f893e3 [file] [log] [blame]
Matteo Scandolo46b56102015-12-16 14:23:08 -08001/**
2 * GitHub theme
3 *
4 * @author Craig Campbell
5 * @version 1.0.4
6 */
7pre {
8 border: 1px solid #ccc;
9 word-wrap: break-word;
10 padding: 6px 10px;
11 line-height: 19px;
12 margin-bottom: 20px;
13}
14
15code {
16 border: 1px solid #eaeaea;
17 margin: 0 2px;
18 padding: 0 5px;
19 font-size: 12px;
20}
21
22pre code {
23 border: 0;
24 padding: 0;
25 margin: 0;
26 -moz-border-radius: 0;
27 -webkit-border-radius: 0;
28 border-radius: 0;
29}
30
31pre, code {
32 font-family: Consolas, 'Liberation Mono', Courier, monospace;
33 color: #333;
34 background: #f8f8f8;
35 -moz-border-radius: 3px;
36 -webkit-border-radius: 3px;
37 border-radius: 3px;
38}
39
40pre, pre code {
41 font-size: 13px;
42}
43
44pre .comment {
45 color: #998;
46}
47
48pre .support {
49 color: #0086B3;
50}
51
52pre .tag, pre .tag-name {
53 color: navy;
54}
55
56pre .keyword, pre .css-property, pre .vendor-prefix, pre .sass, pre .class, pre .id, pre .css-value, pre .entity.function, pre .storage.function {
57 font-weight: bold;
58}
59
60pre .css-property, pre .css-value, pre .vendor-prefix, pre .support.namespace {
61 color: #333;
62}
63
64pre .constant.numeric, pre .keyword.unit, pre .hex-color {
65 font-weight: normal;
66 color: #099;
67}
68
69pre .entity.class {
70 color: #458;
71}
72
73pre .entity.id, pre .entity.function {
74 color: #900;
75}
76
77pre .attribute, pre .variable {
78 color: teal;
79}
80
81pre .string, pre .support.value {
82 font-weight: normal;
83 color: #d14;
84}
85
86pre .regexp {
87 color: #009926;
88}