UNPKG

2.52 kBCSSView Raw
1/*
2 * Z-Toch
3 * by Zeel Codder
4 * https://github.com/zeel-codder
5 *
6 */
7code[class*="language-"],
8pre[class*="language-"] {
9 color: #22da17;
10 font-family: monospace;
11 text-align: left;
12 white-space: pre;
13 word-spacing: normal;
14 word-break: normal;
15 word-wrap: normal;
16 -moz-tab-size: 4;
17 -o-tab-size: 4;
18 tab-size: 4;
19 -webkit-hyphens: none;
20 -moz-hyphens: none;
21 -ms-hyphens: none;
22 hyphens: none;
23 line-height: 25px;
24 font-size: 18px;
25 margin: 5px 0;
26}
27
28pre[class*="language-"] * {
29 font-family: monospace;
30}
31
32:not(pre) > code[class*="language-"],
33pre[class*="language-"] {
34 color: white;
35 background: #0a143c;
36 padding: 22px;
37}
38
39/* Code blocks */
40pre[class*="language-"] {
41 padding: 1em;
42 margin: 0.5em 0;
43 overflow: auto;
44}
45
46pre[class*="language-"]::-moz-selection,
47pre[class*="language-"] ::-moz-selection,
48code[class*="language-"]::-moz-selection,
49code[class*="language-"] ::-moz-selection {
50 text-shadow: none;
51 background: rgba(29, 59, 83, 0.99);
52}
53
54pre[class*="language-"]::selection,
55pre[class*="language-"] ::selection,
56code[class*="language-"]::selection,
57code[class*="language-"] ::selection {
58 text-shadow: none;
59 background: rgba(29, 59, 83, 0.99);
60}
61
62@media print {
63 code[class*="language-"],
64 pre[class*="language-"] {
65 text-shadow: none;
66 }
67}
68
69:not(pre) > code[class*="language-"] {
70 padding: 0.1em;
71 border-radius: 0.3em;
72 white-space: normal;
73}
74
75.token.comment,
76.token.prolog,
77.token.cdata {
78 color: rgb(99, 119, 119);
79 font-style: italic;
80}
81
82.token.punctuation {
83 color: rgb(199, 146, 234);
84}
85
86.namespace {
87 color: rgb(178, 204, 214);
88}
89
90.token.deleted {
91 color: rgba(239, 83, 80, 0.56);
92 font-style: italic;
93}
94
95.token.symbol,
96.token.property {
97 color: rgb(128, 203, 196);
98}
99
100.token.tag,
101.token.operator,
102.token.keyword {
103 color: rgb(127, 219, 202);
104}
105
106.token.boolean {
107 color: rgb(255, 88, 116);
108}
109
110.token.number {
111 color: rgb(247, 140, 108);
112}
113
114.token.constant,
115.token.function,
116.token.builtin,
117.token.char {
118 color: rgb(34 183 199);
119}
120
121.token.selector,
122.token.doctype {
123 color: rgb(199, 146, 234);
124 font-style: italic;
125}
126
127.token.attr-name,
128.token.inserted {
129 color: rgb(173, 219, 103);
130 font-style: italic;
131}
132
133.token.string,
134.token.url,
135.token.entity,
136.language-css .token.string,
137.style .token.string {
138 color: rgb(173, 219, 103);
139}
140
141.token.class-name,
142.token.atrule,
143.token.attr-value {
144 color: rgb(255, 203, 139);
145}
146
147.token.regex,
148.token.important,
149.token.variable {
150 color: rgb(214, 222, 235);
151}
152
153.token.important,
154.token.bold {
155 font-weight: bold;
156}
157
158.token.italic {
159 font-style: italic;
160}