Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit f59596a

Browse files
committed
pushing a copy of the style guide to core/
1 parent 691a9ca commit f59596a

24 files changed

+6651
-0
lines changed

core/styleguide/assets/icons.dev.svg

Lines changed: 37 additions & 0 deletions
Loading

core/styleguide/assets/icons.eot

2.23 KB
Binary file not shown.

core/styleguide/assets/icons.svg

Lines changed: 37 additions & 0 deletions
Loading

core/styleguide/assets/icons.ttf

2.08 KB
Binary file not shown.

core/styleguide/assets/icons.woff

1.99 KB
Binary file not shown.

core/styleguide/css/prism.css

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
/**
2+
* okaidia theme for JavaScript, CSS and HTML
3+
* Loosely based on Monokai textmate theme by http://www.monokai.nl/
4+
* @author ocodia
5+
*/
6+
7+
code[class*="language-"],
8+
pre[class*="language-"] {
9+
color: #f8f8f2;
10+
text-shadow: 0 1px rgba(0,0,0,0.3);
11+
font-family: Consolas, Monaco, 'Andale Mono', monospace;
12+
direction: ltr;
13+
text-align: left;
14+
white-space: pre;
15+
word-spacing: normal;
16+
17+
-moz-tab-size: 4;
18+
-o-tab-size: 4;
19+
tab-size: 4;
20+
21+
-webkit-hyphens: none;
22+
-moz-hyphens: none;
23+
-ms-hyphens: none;
24+
hyphens: none;
25+
}
26+
27+
/* Code blocks */
28+
pre[class*="language-"] {
29+
padding: 1em;
30+
margin: .5em 0;
31+
overflow: auto;
32+
border-radius: 0.3em;
33+
}
34+
35+
:not(pre) > code[class*="language-"],
36+
pre[class*="language-"] {
37+
background: #272822;
38+
}
39+
40+
/* Inline code */
41+
:not(pre) > code[class*="language-"] {
42+
padding: .1em;
43+
border-radius: .3em;
44+
}
45+
46+
.token.comment,
47+
.token.prolog,
48+
.token.doctype,
49+
.token.cdata {
50+
color: slategray;
51+
}
52+
53+
.token.punctuation {
54+
color: #f8f8f2;
55+
}
56+
57+
.namespace {
58+
opacity: .7;
59+
}
60+
61+
.token.property,
62+
.token.tag,
63+
.token.constant,
64+
.token.symbol {
65+
color: #f92672;
66+
}
67+
68+
.token.boolean,
69+
.token.number{
70+
color: #ae81ff;
71+
}
72+
73+
.token.selector,
74+
.token.attr-name,
75+
.token.string,
76+
.token.builtin {
77+
color: #a6e22e;
78+
}
79+
80+
81+
.token.operator,
82+
.token.entity,
83+
.token.url,
84+
.language-css .token.string,
85+
.style .token.string,
86+
.token.variable {
87+
color: #f8f8f2;
88+
}
89+
90+
.token.atrule,
91+
.token.attr-value
92+
{
93+
color: #e6db74;
94+
}
95+
96+
97+
.token.keyword{
98+
color: #66d9ef;
99+
}
100+
101+
.token.regex,
102+
.token.important {
103+
color: #fd971f;
104+
}
105+
106+
.token.important {
107+
font-weight: bold;
108+
}
109+
110+
.token.entity {
111+
cursor: help;
112+
}

core/styleguide/css/static.css

Whitespace-only changes.

0 commit comments

Comments
 (0)