0
|
1 /**
|
|
2 * SyntaxHighlighter
|
|
3 * http://alexgorbatchev.com/SyntaxHighlighter
|
|
4 *
|
|
5 * SyntaxHighlighter is donationware. If you are using it, please donate.
|
|
6 * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
|
7 *
|
|
8 * @version
|
|
9 * 3.0.83 (July 02 2010)
|
|
10 *
|
|
11 * @copyright
|
|
12 * Copyright (C) 2004-2010 Alex Gorbatchev.
|
|
13 *
|
|
14 * @license
|
|
15 * Dual licensed under the MIT and GPL licenses.
|
|
16 */
|
|
17 .syntaxhighlighter {
|
|
18 background-color: white !important;
|
|
19 font-size: 14px !important;
|
|
20 overflow: visible !important;
|
|
21 }
|
|
22 .syntaxhighlighter .line.alt1 {
|
|
23 background-color: white !important;
|
|
24 }
|
|
25 .syntaxhighlighter .line.alt2 {
|
|
26 background-color: #F8F8F8 !important;
|
|
27 }
|
|
28 .syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
|
|
29 background-color: #e0e0e0 !important;
|
|
30 }
|
|
31 .syntaxhighlighter .line.highlighted.number {
|
|
32 color: black !important;
|
|
33 }
|
|
34 .syntaxhighlighter table caption {
|
|
35 color: black !important;
|
|
36 }
|
|
37 .syntaxhighlighter .gutter {
|
|
38 }
|
|
39 .syntaxhighlighter .gutter div {
|
|
40 color: #5C5C5C !important;
|
|
41 width: 20px !important;
|
|
42 }
|
|
43 .syntaxhighlighter .gutter .line.alt1, .syntaxhighlighter .gutter .line.alt2 {
|
|
44 background-color: white !important;
|
|
45 }
|
|
46 .odd .syntaxhighlighter .gutter .line.alt1, .odd .syntaxhighlighter .gutter .line.alt2 {
|
|
47 background-color: #F2F2F2 !important;
|
|
48 }
|
|
49 .syntaxhighlighter .gutter .line {
|
|
50 border-right: 3px solid #4E6CA3 !important;
|
|
51 }
|
|
52 .syntaxhighlighter .gutter .line.highlighted {
|
|
53 background-color: #4E6CA3 !important;
|
|
54 color: white !important;
|
|
55 }
|
|
56 .syntaxhighlighter.printing .line .content {
|
|
57 border: none !important;
|
|
58 }
|
|
59 .syntaxhighlighter.collapsed {
|
|
60 overflow: visible !important;
|
|
61 }
|
|
62 .syntaxhighlighter.collapsed .toolbar {
|
|
63 color: blue !important;
|
|
64 background: white !important;
|
|
65 border: 1px solid #4E6CA3 !important;
|
|
66 }
|
|
67 .syntaxhighlighter.collapsed .toolbar a {
|
|
68 color: blue !important;
|
|
69 }
|
|
70 .syntaxhighlighter.collapsed .toolbar a:hover {
|
|
71 color: red !important;
|
|
72 }
|
|
73 .syntaxhighlighter .toolbar {
|
|
74 color: white !important;
|
|
75 background: #4E6CA3 !important;
|
|
76 border: none !important;
|
|
77 }
|
|
78 .syntaxhighlighter .toolbar a {
|
|
79 color: white !important;
|
|
80 }
|
|
81 .syntaxhighlighter .toolbar a:hover {
|
|
82 color: black !important;
|
|
83 }
|
|
84 .syntaxhighlighter .plain, .syntaxhighlighter .plain a {
|
|
85 color: black !important;
|
|
86 }
|
|
87 .syntaxhighlighter .comments, .syntaxhighlighter .comments a {
|
|
88 color: #008200 !important;
|
|
89 }
|
|
90 .syntaxhighlighter .string, .syntaxhighlighter .string a {
|
|
91 color: blue !important;
|
|
92 }
|
|
93 .syntaxhighlighter .keyword {
|
|
94 color: #006699 !important;
|
|
95 }
|
|
96 .syntaxhighlighter .preprocessor {
|
|
97 color: gray !important;
|
|
98 }
|
|
99 .syntaxhighlighter .variable {
|
|
100 color: #aa7700 !important;
|
|
101 }
|
|
102 .syntaxhighlighter .value {
|
|
103 color: #009900 !important;
|
|
104 }
|
|
105 .syntaxhighlighter .functions {
|
|
106 color: #ff1493 !important;
|
|
107 }
|
|
108 .syntaxhighlighter .constants {
|
|
109 color: #0066cc !important;
|
|
110 }
|
|
111 .syntaxhighlighter .script {
|
|
112 font-weight: bold !important;
|
|
113 color: #006699 !important;
|
|
114 background-color: none !important;
|
|
115 }
|
|
116 .syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
|
|
117 color: gray !important;
|
|
118 }
|
|
119 .syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
|
|
120 color: #ff1493 !important;
|
|
121 }
|
|
122 .syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
|
|
123 color: red !important;
|
|
124 }
|
|
125
|
|
126 .syntaxhighlighter .keyword {
|
|
127 font-weight: bold !important;
|
|
128 }
|