~didrocks/+junk/face-detection-15.04

« back to all changes in this revision

Viewing changes to facedetection/www/bower_components/prism/themes/prism-okaidia.css

  • Committer: Didier Roche
  • Date: 2016-05-10 23:09:11 UTC
  • Revision ID: didier.roche@canonical.com-20160510230911-c7xr490zrj3yrzxd
New version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
        background: none;
 
11
        text-shadow: 0 1px rgba(0, 0, 0, 0.3);
 
12
        font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
 
13
        direction: ltr;
 
14
        text-align: left;
 
15
        white-space: pre;
 
16
        word-spacing: normal;
 
17
        word-break: normal;
 
18
        word-wrap: normal;
 
19
        line-height: 1.5;
 
20
 
 
21
        -moz-tab-size: 4;
 
22
        -o-tab-size: 4;
 
23
        tab-size: 4;
 
24
 
 
25
        -webkit-hyphens: none;
 
26
        -moz-hyphens: none;
 
27
        -ms-hyphens: none;
 
28
        hyphens: none;
 
29
}
 
30
 
 
31
/* Code blocks */
 
32
pre[class*="language-"] {
 
33
        padding: 1em;
 
34
        margin: .5em 0;
 
35
        overflow: auto;
 
36
        border-radius: 0.3em;
 
37
}
 
38
 
 
39
:not(pre) > code[class*="language-"],
 
40
pre[class*="language-"] {
 
41
        background: #272822;
 
42
}
 
43
 
 
44
/* Inline code */
 
45
:not(pre) > code[class*="language-"] {
 
46
        padding: .1em;
 
47
        border-radius: .3em;
 
48
        white-space: normal;
 
49
}
 
50
 
 
51
.token.comment,
 
52
.token.prolog,
 
53
.token.doctype,
 
54
.token.cdata {
 
55
        color: slategray;
 
56
}
 
57
 
 
58
.token.punctuation {
 
59
        color: #f8f8f2;
 
60
}
 
61
 
 
62
.namespace {
 
63
        opacity: .7;
 
64
}
 
65
 
 
66
.token.property,
 
67
.token.tag,
 
68
.token.constant,
 
69
.token.symbol,
 
70
.token.deleted {
 
71
        color: #f92672;
 
72
}
 
73
 
 
74
.token.boolean,
 
75
.token.number {
 
76
        color: #ae81ff;
 
77
}
 
78
 
 
79
.token.selector,
 
80
.token.attr-name,
 
81
.token.string,
 
82
.token.char,
 
83
.token.builtin,
 
84
.token.inserted {
 
85
        color: #a6e22e;
 
86
}
 
87
 
 
88
.token.operator,
 
89
.token.entity,
 
90
.token.url,
 
91
.language-css .token.string,
 
92
.style .token.string,
 
93
.token.variable {
 
94
        color: #f8f8f2;
 
95
}
 
96
 
 
97
.token.atrule,
 
98
.token.attr-value,
 
99
.token.function {
 
100
        color: #e6db74;
 
101
}
 
102
 
 
103
.token.keyword {
 
104
        color: #66d9ef;
 
105
}
 
106
 
 
107
.token.regex,
 
108
.token.important {
 
109
        color: #fd971f;
 
110
}
 
111
 
 
112
.token.important,
 
113
.token.bold {
 
114
        font-weight: bold;
 
115
}
 
116
.token.italic {
 
117
        font-style: italic;
 
118
}
 
119
 
 
120
.token.entity {
 
121
        cursor: help;
 
122
}