annotate assets/css/prism-okaidia.css @ 25:0795207f3b90

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