Skip to content

Commit 09af9b1

Browse files
committed
Material vorlage
1 parent 32fe027 commit 09af9b1

23 files changed

+1534
-0
lines changed

css/prism.css

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
/* http://prismjs.com/download.html?themes=prism-solarizedlight&languages=markup+css+clike+javascript+python&plugins=file-highlight */
2+
/*
3+
Solarized Color Schemes originally by Ethan Schoonover
4+
http://ethanschoonover.com/solarized
5+
6+
Ported for PrismJS by Hector Matos
7+
Website: https://krakendev.io
8+
Twitter Handle: https://twitter.com/allonsykraken)
9+
*/
10+
11+
/*
12+
SOLARIZED HEX
13+
--------- -------
14+
base03 #002b36
15+
base02 #073642
16+
base01 #586e75
17+
base00 #657b83
18+
base0 #839496
19+
base1 #93a1a1
20+
base2 #eee8d5
21+
base3 #fdf6e3
22+
yellow #b58900
23+
orange #cb4b16
24+
red #dc322f
25+
magenta #d33682
26+
violet #6c71c4
27+
blue #268bd2
28+
cyan #2aa198
29+
green #859900
30+
*/
31+
32+
code[class*="language-"],
33+
pre[class*="language-"] {
34+
color: #657b83; /* base00 */
35+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
36+
text-align: left;
37+
white-space: pre;
38+
word-spacing: normal;
39+
word-break: normal;
40+
word-wrap: normal;
41+
42+
line-height: 1.5;
43+
44+
-moz-tab-size: 4;
45+
-o-tab-size: 4;
46+
tab-size: 4;
47+
48+
-webkit-hyphens: none;
49+
-moz-hyphens: none;
50+
-ms-hyphens: none;
51+
hyphens: none;
52+
}
53+
54+
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
55+
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
56+
background: #073642; /* base02 */
57+
}
58+
59+
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
60+
code[class*="language-"]::selection, code[class*="language-"] ::selection {
61+
background: #073642; /* base02 */
62+
}
63+
64+
/* Code blocks */
65+
pre[class*="language-"] {
66+
padding: 1em;
67+
margin: .5em 0;
68+
overflow: auto;
69+
border-radius: 0.3em;
70+
}
71+
72+
:not(pre) > code[class*="language-"],
73+
pre[class*="language-"] {
74+
background-color: #fdf6e3; /* base3 */
75+
}
76+
77+
/* Inline code */
78+
:not(pre) > code[class*="language-"] {
79+
padding: .1em;
80+
border-radius: .3em;
81+
}
82+
83+
.token.comment,
84+
.token.prolog,
85+
.token.doctype,
86+
.token.cdata {
87+
color: #93a1a1; /* base1 */
88+
}
89+
90+
.token.punctuation {
91+
color: #586e75; /* base01 */
92+
}
93+
94+
.namespace {
95+
opacity: .7;
96+
}
97+
98+
.token.property,
99+
.token.tag,
100+
.token.boolean,
101+
.token.number,
102+
.token.constant,
103+
.token.symbol,
104+
.token.deleted {
105+
color: #268bd2; /* blue */
106+
}
107+
108+
.token.selector,
109+
.token.attr-name,
110+
.token.string,
111+
.token.char,
112+
.token.builtin,
113+
.token.url,
114+
.token.inserted {
115+
color: #2aa198; /* cyan */
116+
}
117+
118+
.token.entity {
119+
color: #657b83; /* base00 */
120+
background: #eee8d5; /* base2 */
121+
}
122+
123+
.token.atrule,
124+
.token.attr-value,
125+
.token.keyword {
126+
color: #859900; /* green */
127+
}
128+
129+
.token.function {
130+
color: #b58900; /* yellow */
131+
}
132+
133+
.token.regex,
134+
.token.important,
135+
.token.variable {
136+
color: #cb4b16; /* orange */
137+
}
138+
139+
.token.important,
140+
.token.bold {
141+
font-weight: bold;
142+
}
143+
.token.italic {
144+
font-style: italic;
145+
}
146+
147+
.token.entity {
148+
cursor: help;
149+
}

0 commit comments

Comments
 (0)