slideoff 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/MIT-LICENSE +20 -0
- data/README.md +218 -0
- data/bin/slideoff +127 -0
- data/lib/slideoff/config_builder.rb +60 -0
- data/lib/slideoff/flickr_api.rb +50 -0
- data/lib/slideoff/flickr_image.rb +92 -0
- data/lib/slideoff/markdown.rb +145 -0
- data/lib/slideoff/presentation.rb +90 -0
- data/lib/slideoff/remote_api.rb +53 -0
- data/lib/slideoff/routes.rb +20 -0
- data/lib/slideoff/server.rb +50 -0
- data/lib/slideoff/slides_api.rb +59 -0
- data/lib/slideoff/utils.rb +453 -0
- data/lib/slideoff.rb +15 -0
- data/themes/3d_slideshow/README +2 -0
- data/themes/3d_slideshow/css/main.css +232 -0
- data/themes/3d_slideshow/css/reset.css +57 -0
- data/themes/3d_slideshow/index.erb +31 -0
- data/themes/3d_slideshow/js/slideshow.js +288 -0
- data/themes/CSSS/README +2 -0
- data/themes/CSSS/css/slideshow.css +304 -0
- data/themes/CSSS/css/theme.css +250 -0
- data/themes/CSSS/images/rainbow-wood.jpg +0 -0
- data/themes/CSSS/index.erb +36 -0
- data/themes/CSSS/js/classList.js +116 -0
- data/themes/CSSS/js/prefixfree.min.js +5 -0
- data/themes/CSSS/js/slideshow.js +621 -0
- data/themes/common/css/pygments/colorful.css +62 -0
- data/themes/common/css/pygments/manni.css +61 -0
- data/themes/common/css/pygments/native.css +70 -0
- data/themes/common/css/pygments/solarized.css +66 -0
- data/themes/common/fonts/DroidSansMono.svg +626 -0
- data/themes/common/fonts/DroidSansMono.ttf +0 -0
- data/themes/common/fonts/Lato-BoldItalic.woff +0 -0
- data/themes/common/fonts/Lato-Italic.woff +0 -0
- data/themes/common/fonts/Lato-bold.woff +0 -0
- data/themes/common/fonts/Lato.woff +0 -0
- data/themes/common/fonts/OpenSans-Bold.woff +0 -0
- data/themes/common/fonts/OpenSans-BoldItalic.woff +0 -0
- data/themes/common/fonts/OpenSans-Italic.woff +0 -0
- data/themes/common/fonts/OpenSans.woff +0 -0
- data/themes/common/fonts/PTMono.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.woff +0 -0
- data/themes/common/fonts/PTSans.woff +0 -0
- data/themes/common/fonts/TargetBlank.otf +0 -0
- data/themes/common/fonts/TargetBlank.svg +14 -0
- data/themes/common/fonts/YanoneKaffeesatz-Bold.woff +0 -0
- data/themes/common/fonts/YanoneKaffeesatz-Regular.woff +0 -0
- data/themes/common/fonts/crimson_text.ttf +0 -0
- data/themes/common/fonts/crimson_text_bold.ttf +0 -0
- data/themes/common/fonts/crimson_text_semibold.ttf +0 -0
- data/themes/common/fonts/league_gothic-webfont.ttf +0 -0
- data/themes/html5rocks/README +2 -0
- data/themes/html5rocks/css/default.css +501 -0
- data/themes/html5rocks/css/moon.css +543 -0
- data/themes/html5rocks/css/sand.css +508 -0
- data/themes/html5rocks/css/sea_wave.css +492 -0
- data/themes/html5rocks/index.erb +64 -0
- data/themes/html5rocks/js/slides.js +464 -0
- data/themes/io2012/README +2 -0
- data/themes/io2012/css/default.css +1481 -0
- data/themes/io2012/css/fonts.css +24 -0
- data/themes/io2012/css/phone.css +27 -0
- data/themes/io2012/images/google_developers_icon_128.png +0 -0
- data/themes/io2012/images/io2012_logo.png +0 -0
- data/themes/io2012/index.erb +73 -0
- data/themes/io2012/js/hammer.js +586 -0
- data/themes/io2012/js/modernizr.custom.45394.js +4 -0
- data/themes/io2012/js/order.js +8 -0
- data/themes/io2012/js/polyfills/classList.min.js +2 -0
- data/themes/io2012/js/polyfills/dataset.min.js +2 -0
- data/themes/io2012/js/polyfills/history.min.js +1 -0
- data/themes/io2012/js/prettify/lang-apollo.js +2 -0
- data/themes/io2012/js/prettify/lang-clj.js +18 -0
- data/themes/io2012/js/prettify/lang-css.js +2 -0
- data/themes/io2012/js/prettify/lang-go.js +1 -0
- data/themes/io2012/js/prettify/lang-hs.js +2 -0
- data/themes/io2012/js/prettify/lang-lisp.js +3 -0
- data/themes/io2012/js/prettify/lang-lua.js +2 -0
- data/themes/io2012/js/prettify/lang-ml.js +2 -0
- data/themes/io2012/js/prettify/lang-n.js +4 -0
- data/themes/io2012/js/prettify/lang-proto.js +1 -0
- data/themes/io2012/js/prettify/lang-scala.js +2 -0
- data/themes/io2012/js/prettify/lang-sql.js +2 -0
- data/themes/io2012/js/prettify/lang-tex.js +1 -0
- data/themes/io2012/js/prettify/lang-vb.js +2 -0
- data/themes/io2012/js/prettify/lang-vhdl.js +3 -0
- data/themes/io2012/js/prettify/lang-wiki.js +2 -0
- data/themes/io2012/js/prettify/lang-xq.js +3 -0
- data/themes/io2012/js/prettify/lang-yaml.js +2 -0
- data/themes/io2012/js/prettify/prettify.css +1 -0
- data/themes/io2012/js/prettify/prettify.js +28 -0
- data/themes/io2012/js/require-1.0.8.min.js +33 -0
- data/themes/io2012/js/slide-controller.js +109 -0
- data/themes/io2012/js/slide-deck.js +768 -0
- data/themes/io2012/js/slides.js +5 -0
- data/themes/memories/README +5 -0
- data/themes/memories/css/fonts.css +25 -0
- data/themes/memories/css/slideshow.css +286 -0
- data/themes/memories/css/theme.css +183 -0
- data/themes/memories/index.erb +37 -0
- data/themes/memories/js/prefixfree.min.js +13 -0
- data/themes/memories/js/slideshow.js +577 -0
- data/themes/modern/LICENSE +20 -0
- data/themes/modern/README.md +52 -0
- data/themes/modern/css/GENERATED_CONTENT +0 -0
- data/themes/modern/css/defaults.css +0 -0
- data/themes/modern/css/fonts.css +166 -0
- data/themes/modern/css/pygments/colorful.css +215 -0
- data/themes/modern/css/pygments/github.css +208 -0
- data/themes/modern/css/pygments/solarized-dark.css +213 -0
- data/themes/modern/css/pygments/solarized-light.css +213 -0
- data/themes/modern/css/reset.css +41 -0
- data/themes/modern/css/screen.css +1183 -0
- data/themes/modern/fonts/Collegiate.woff +0 -0
- data/themes/modern/fonts/GoudyBookletter.1911.woff +0 -0
- data/themes/modern/fonts/Inconsolata.Bold.woff +0 -0
- data/themes/modern/fonts/Inconsolata.woff +0 -0
- data/themes/modern/fonts/Junction.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Bold.woff +0 -0
- data/themes/modern/fonts/LiberationMono.BoldItalic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Italic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Bold.woff +0 -0
- data/themes/modern/fonts/OpenSans.BoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBold.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Italic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Light.woff +0 -0
- data/themes/modern/fonts/OpenSans.LightItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Semibold.woff +0 -0
- data/themes/modern/fonts/OpenSans.SemiboldItalic.woff +0 -0
- data/themes/modern/fonts/PTMono.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.woff +0 -0
- data/themes/modern/fonts/Raleway.Thin.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Bold.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.BoldItalic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Italic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Regular.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Bold.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.ExtraLight.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Light.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Regular.woff +0 -0
- data/themes/modern/images/cc/by.svg +29 -0
- data/themes/modern/images/cc/cc-white.svg +23 -0
- data/themes/modern/images/cc/cc.svg +23 -0
- data/themes/modern/images/cc/nc-eu.svg +21 -0
- data/themes/modern/images/cc/nc-jp.svg +18 -0
- data/themes/modern/images/cc/nc.svg +23 -0
- data/themes/modern/images/cc/nd.svg +20 -0
- data/themes/modern/images/cc/pd.svg +24 -0
- data/themes/modern/images/cc/remix.svg +20 -0
- data/themes/modern/images/cc/sa.svg +22 -0
- data/themes/modern/images/cc/sampling.plus.svg +33 -0
- data/themes/modern/images/cc/sampling.svg +36 -0
- data/themes/modern/images/cc/share.svg +22 -0
- data/themes/modern/images/cc/zero.svg +24 -0
- data/themes/modern/images/flickr.svg +65 -0
- data/themes/modern/images/mesh.png +0 -0
- data/themes/modern/images/mesh@2x.png +0 -0
- data/themes/modern/images/progress-grayDark.svg +55 -0
- data/themes/modern/images/progress.svg +3 -0
- data/themes/modern/index.erb +76 -0
- data/themes/modern/js/highcharts.js +294 -0
- data/themes/modern/js/jquery-2.1.0.min.js +4 -0
- data/themes/modern/js/script.coffee +480 -0
- data/themes/modern/js/script.js +678 -0
- data/themes/modern/styles/_box.scss +89 -0
- data/themes/modern/styles/_figure.scss +81 -0
- data/themes/modern/styles/_full.scss +74 -0
- data/themes/modern/styles/_increment.scss +38 -0
- data/themes/modern/styles/_list.scss +129 -0
- data/themes/modern/styles/_progress.scss +19 -0
- data/themes/modern/styles/defaults.scss +46 -0
- data/themes/modern/styles/fonts.scss +197 -0
- data/themes/modern/styles/pygments/_solarized.scss +82 -0
- data/themes/modern/styles/pygments/colorful.scss +67 -0
- data/themes/modern/styles/pygments/github.scss +67 -0
- data/themes/modern/styles/pygments/solarized-dark.scss +15 -0
- data/themes/modern/styles/pygments/solarized-light.scss +15 -0
- data/themes/modern/styles/reset.scss +46 -0
- data/themes/modern/styles/screen.scss +841 -0
- data/themes/reveal/README +2 -0
- data/themes/reveal/css/main.css +1029 -0
- data/themes/reveal/css/reset.css +57 -0
- data/themes/reveal/index.erb +102 -0
- data/themes/reveal/js/classList.js +2 -0
- data/themes/reveal/js/head.min.js +8 -0
- data/themes/reveal/js/reveal.js +951 -0
- data/themes/shower/README +2 -0
- data/themes/shower/css/fonts.css +50 -0
- data/themes/shower/css/reset.css +42 -0
- data/themes/shower/css/style.css +418 -0
- data/themes/shower/images/grid.png +0 -0
- data/themes/shower/images/linen.png +0 -0
- data/themes/shower/images/ribbon.svg +4 -0
- data/themes/shower/index.erb +35 -0
- data/themes/shower/js/script.js +325 -0
- data/themes/template/README +5 -0
- data/themes/template/css/reset.css +42 -0
- data/themes/template/index.erb +35 -0
- data/themes/template/js/prefixfree.min.js +13 -0
- metadata +343 -0
@@ -0,0 +1,213 @@
|
|
1
|
+
/* Solarized Dark
|
2
|
+
http://ethanschoonover.com/solarized
|
3
|
+
https://gist.github.com/nicolashery/5765395/raw/91ae32653fec817d26ba322cbe9d62192b07b851/solarized-dark.css
|
4
|
+
*/
|
5
|
+
code {
|
6
|
+
background-color: #002b36;
|
7
|
+
color: #93a1a1;
|
8
|
+
/* Comment */
|
9
|
+
/* Error */
|
10
|
+
/* Generic */
|
11
|
+
/* Keyword */
|
12
|
+
/* Literal */
|
13
|
+
/* Name */
|
14
|
+
/* Operator */
|
15
|
+
/* Other */
|
16
|
+
/* Punctuation */
|
17
|
+
/* Comment.Multiline */
|
18
|
+
/* Comment.Preproc */
|
19
|
+
/* Comment.Single */
|
20
|
+
/* Comment.Special */
|
21
|
+
/* Generic.Deleted */
|
22
|
+
/* Generic.Emph */
|
23
|
+
/* Generic.Error */
|
24
|
+
/* Generic.Heading */
|
25
|
+
/* Generic.Inserted */
|
26
|
+
/* Generic.Output */
|
27
|
+
/* Generic.Prompt */
|
28
|
+
/* Generic.Strong */
|
29
|
+
/* Generic.Subheading */
|
30
|
+
/* Generic.Traceback */
|
31
|
+
/* Keyword.Constant */
|
32
|
+
/* Keyword.Declaration */
|
33
|
+
/* Keyword.Namespace */
|
34
|
+
/* Keyword.Pseudo */
|
35
|
+
/* Keyword.Reserved */
|
36
|
+
/* Keyword.Type */
|
37
|
+
/* Literal.Date */
|
38
|
+
/* Literal.Number */
|
39
|
+
/* Literal.String */
|
40
|
+
/* Name.Attribute */
|
41
|
+
/* Name.Builtin */
|
42
|
+
/* Name.Class */
|
43
|
+
/* Name.Constant */
|
44
|
+
/* Name.Decorator */
|
45
|
+
/* Name.Entity */
|
46
|
+
/* Name.Exception */
|
47
|
+
/* Name.Function */
|
48
|
+
/* Name.Label */
|
49
|
+
/* Name.Namespace */
|
50
|
+
/* Name.Other */
|
51
|
+
/* Name.Property */
|
52
|
+
/* Name.Tag */
|
53
|
+
/* Name.Variable */
|
54
|
+
/* Operator.Word */
|
55
|
+
/* Text.Whitespace */
|
56
|
+
/* Literal.Number.Float */
|
57
|
+
/* Literal.Number.Hex */
|
58
|
+
/* Literal.Number.Integer */
|
59
|
+
/* Literal.Number.Oct */
|
60
|
+
/* Literal.String.Backtick */
|
61
|
+
/* Literal.String.Char */
|
62
|
+
/* Literal.String.Doc */
|
63
|
+
/* Literal.String.Double */
|
64
|
+
/* Literal.String.Escape */
|
65
|
+
/* Literal.String.Heredoc */
|
66
|
+
/* Literal.String.Interpol */
|
67
|
+
/* Literal.String.Other */
|
68
|
+
/* Literal.String.Regex */
|
69
|
+
/* Literal.String.Single */
|
70
|
+
/* Literal.String.Symbol */
|
71
|
+
/* Name.Builtin.Pseudo */
|
72
|
+
/* Name.Variable.Class */
|
73
|
+
/* Name.Variable.Global */
|
74
|
+
/* Name.Variable.Instance */
|
75
|
+
/* Literal.Number.Integer.Long */ }
|
76
|
+
code .c {
|
77
|
+
color: #586e75; }
|
78
|
+
code .err {
|
79
|
+
color: #93a1a1; }
|
80
|
+
code .g {
|
81
|
+
color: #93a1a1; }
|
82
|
+
code .k {
|
83
|
+
color: #859900; }
|
84
|
+
code .l {
|
85
|
+
color: #93a1a1; }
|
86
|
+
code .n {
|
87
|
+
color: #93a1a1; }
|
88
|
+
code .o {
|
89
|
+
color: #93a1a1; }
|
90
|
+
code .x {
|
91
|
+
color: #cb4b16; }
|
92
|
+
code .p {
|
93
|
+
color: #93a1a1; }
|
94
|
+
code .cm {
|
95
|
+
color: #586e75; }
|
96
|
+
code .cp {
|
97
|
+
color: #859900; }
|
98
|
+
code .c1 {
|
99
|
+
color: #586e75; }
|
100
|
+
code .cs {
|
101
|
+
color: #859900; }
|
102
|
+
code .gd {
|
103
|
+
color: #2aa198; }
|
104
|
+
code .ge {
|
105
|
+
color: #93a1a1;
|
106
|
+
font-style: italic; }
|
107
|
+
code .gr {
|
108
|
+
color: #dc322f; }
|
109
|
+
code .gh {
|
110
|
+
color: #cb4b16; }
|
111
|
+
code .gi {
|
112
|
+
color: #859900; }
|
113
|
+
code .go {
|
114
|
+
color: #93a1a1; }
|
115
|
+
code .gp {
|
116
|
+
color: #93a1a1; }
|
117
|
+
code .gs {
|
118
|
+
color: #93a1a1;
|
119
|
+
font-weight: bold; }
|
120
|
+
code .gu {
|
121
|
+
color: #cb4b16; }
|
122
|
+
code .gt {
|
123
|
+
color: #93a1a1; }
|
124
|
+
code .kc {
|
125
|
+
color: #cb4b16; }
|
126
|
+
code .kd {
|
127
|
+
color: #268bd2; }
|
128
|
+
code .kn {
|
129
|
+
color: #859900; }
|
130
|
+
code .kp {
|
131
|
+
color: #859900; }
|
132
|
+
code .kr {
|
133
|
+
color: #268bd2; }
|
134
|
+
code .kt {
|
135
|
+
color: #dc322f; }
|
136
|
+
code .ld {
|
137
|
+
color: #93a1a1; }
|
138
|
+
code .m {
|
139
|
+
color: #2aa198; }
|
140
|
+
code .s {
|
141
|
+
color: #2aa198; }
|
142
|
+
code .na {
|
143
|
+
color: #93a1a1; }
|
144
|
+
code .nb {
|
145
|
+
color: #b58900; }
|
146
|
+
code .nc {
|
147
|
+
color: #268bd2; }
|
148
|
+
code .no {
|
149
|
+
color: #cb4b16; }
|
150
|
+
code .nd {
|
151
|
+
color: #268bd2; }
|
152
|
+
code .ni {
|
153
|
+
color: #cb4b16; }
|
154
|
+
code .ne {
|
155
|
+
color: #cb4b16; }
|
156
|
+
code .nf {
|
157
|
+
color: #268bd2; }
|
158
|
+
code .nl {
|
159
|
+
color: #93a1a1; }
|
160
|
+
code .nn {
|
161
|
+
color: #93a1a1; }
|
162
|
+
code .nx {
|
163
|
+
color: #93a1a1; }
|
164
|
+
code .py {
|
165
|
+
color: #93a1a1; }
|
166
|
+
code .nt {
|
167
|
+
color: #268bd2; }
|
168
|
+
code .nv {
|
169
|
+
color: #268bd2; }
|
170
|
+
code .ow {
|
171
|
+
color: #859900; }
|
172
|
+
code .w {
|
173
|
+
color: #93a1a1; }
|
174
|
+
code .mf {
|
175
|
+
color: #2aa198; }
|
176
|
+
code .mh {
|
177
|
+
color: #2aa198; }
|
178
|
+
code .mi {
|
179
|
+
color: #2aa198; }
|
180
|
+
code .mo {
|
181
|
+
color: #2aa198; }
|
182
|
+
code .sb {
|
183
|
+
color: #586e75; }
|
184
|
+
code .sc {
|
185
|
+
color: #2aa198; }
|
186
|
+
code .sd {
|
187
|
+
color: #93a1a1; }
|
188
|
+
code .s2 {
|
189
|
+
color: #2aa198; }
|
190
|
+
code .se {
|
191
|
+
color: #cb4b16; }
|
192
|
+
code .sh {
|
193
|
+
color: #93a1a1; }
|
194
|
+
code .si {
|
195
|
+
color: #dc322f; }
|
196
|
+
code .sx {
|
197
|
+
color: #2aa198; }
|
198
|
+
code .sr {
|
199
|
+
color: #dc322f; }
|
200
|
+
code .s1 {
|
201
|
+
color: #2aa198; }
|
202
|
+
code .ss {
|
203
|
+
color: #2aa198; }
|
204
|
+
code .bp {
|
205
|
+
color: #268bd2; }
|
206
|
+
code .vc {
|
207
|
+
color: #268bd2; }
|
208
|
+
code .vg {
|
209
|
+
color: #268bd2; }
|
210
|
+
code .vi {
|
211
|
+
color: #268bd2; }
|
212
|
+
code .il {
|
213
|
+
color: #2aa198; }
|
@@ -0,0 +1,213 @@
|
|
1
|
+
/* Solarized Light
|
2
|
+
http://ethanschoonover.com/solarized
|
3
|
+
https://gist.github.com/nicolashery/5765395/raw/168ea6851298cfd1d5e062ae742e18657b1c7a72/solarized-light.css
|
4
|
+
*/
|
5
|
+
code {
|
6
|
+
background-color: #fdf6e3;
|
7
|
+
color: #586e75;
|
8
|
+
/* Comment */
|
9
|
+
/* Error */
|
10
|
+
/* Generic */
|
11
|
+
/* Keyword */
|
12
|
+
/* Literal */
|
13
|
+
/* Name */
|
14
|
+
/* Operator */
|
15
|
+
/* Other */
|
16
|
+
/* Punctuation */
|
17
|
+
/* Comment.Multiline */
|
18
|
+
/* Comment.Preproc */
|
19
|
+
/* Comment.Single */
|
20
|
+
/* Comment.Special */
|
21
|
+
/* Generic.Deleted */
|
22
|
+
/* Generic.Emph */
|
23
|
+
/* Generic.Error */
|
24
|
+
/* Generic.Heading */
|
25
|
+
/* Generic.Inserted */
|
26
|
+
/* Generic.Output */
|
27
|
+
/* Generic.Prompt */
|
28
|
+
/* Generic.Strong */
|
29
|
+
/* Generic.Subheading */
|
30
|
+
/* Generic.Traceback */
|
31
|
+
/* Keyword.Constant */
|
32
|
+
/* Keyword.Declaration */
|
33
|
+
/* Keyword.Namespace */
|
34
|
+
/* Keyword.Pseudo */
|
35
|
+
/* Keyword.Reserved */
|
36
|
+
/* Keyword.Type */
|
37
|
+
/* Literal.Date */
|
38
|
+
/* Literal.Number */
|
39
|
+
/* Literal.String */
|
40
|
+
/* Name.Attribute */
|
41
|
+
/* Name.Builtin */
|
42
|
+
/* Name.Class */
|
43
|
+
/* Name.Constant */
|
44
|
+
/* Name.Decorator */
|
45
|
+
/* Name.Entity */
|
46
|
+
/* Name.Exception */
|
47
|
+
/* Name.Function */
|
48
|
+
/* Name.Label */
|
49
|
+
/* Name.Namespace */
|
50
|
+
/* Name.Other */
|
51
|
+
/* Name.Property */
|
52
|
+
/* Name.Tag */
|
53
|
+
/* Name.Variable */
|
54
|
+
/* Operator.Word */
|
55
|
+
/* Text.Whitespace */
|
56
|
+
/* Literal.Number.Float */
|
57
|
+
/* Literal.Number.Hex */
|
58
|
+
/* Literal.Number.Integer */
|
59
|
+
/* Literal.Number.Oct */
|
60
|
+
/* Literal.String.Backtick */
|
61
|
+
/* Literal.String.Char */
|
62
|
+
/* Literal.String.Doc */
|
63
|
+
/* Literal.String.Double */
|
64
|
+
/* Literal.String.Escape */
|
65
|
+
/* Literal.String.Heredoc */
|
66
|
+
/* Literal.String.Interpol */
|
67
|
+
/* Literal.String.Other */
|
68
|
+
/* Literal.String.Regex */
|
69
|
+
/* Literal.String.Single */
|
70
|
+
/* Literal.String.Symbol */
|
71
|
+
/* Name.Builtin.Pseudo */
|
72
|
+
/* Name.Variable.Class */
|
73
|
+
/* Name.Variable.Global */
|
74
|
+
/* Name.Variable.Instance */
|
75
|
+
/* Literal.Number.Integer.Long */ }
|
76
|
+
code .c {
|
77
|
+
color: #93a1a1; }
|
78
|
+
code .err {
|
79
|
+
color: #586e75; }
|
80
|
+
code .g {
|
81
|
+
color: #586e75; }
|
82
|
+
code .k {
|
83
|
+
color: #859900; }
|
84
|
+
code .l {
|
85
|
+
color: #586e75; }
|
86
|
+
code .n {
|
87
|
+
color: #586e75; }
|
88
|
+
code .o {
|
89
|
+
color: #586e75; }
|
90
|
+
code .x {
|
91
|
+
color: #cb4b16; }
|
92
|
+
code .p {
|
93
|
+
color: #586e75; }
|
94
|
+
code .cm {
|
95
|
+
color: #93a1a1; }
|
96
|
+
code .cp {
|
97
|
+
color: #859900; }
|
98
|
+
code .c1 {
|
99
|
+
color: #93a1a1; }
|
100
|
+
code .cs {
|
101
|
+
color: #859900; }
|
102
|
+
code .gd {
|
103
|
+
color: #2aa198; }
|
104
|
+
code .ge {
|
105
|
+
color: #586e75;
|
106
|
+
font-style: italic; }
|
107
|
+
code .gr {
|
108
|
+
color: #dc322f; }
|
109
|
+
code .gh {
|
110
|
+
color: #cb4b16; }
|
111
|
+
code .gi {
|
112
|
+
color: #859900; }
|
113
|
+
code .go {
|
114
|
+
color: #586e75; }
|
115
|
+
code .gp {
|
116
|
+
color: #586e75; }
|
117
|
+
code .gs {
|
118
|
+
color: #586e75;
|
119
|
+
font-weight: bold; }
|
120
|
+
code .gu {
|
121
|
+
color: #cb4b16; }
|
122
|
+
code .gt {
|
123
|
+
color: #586e75; }
|
124
|
+
code .kc {
|
125
|
+
color: #cb4b16; }
|
126
|
+
code .kd {
|
127
|
+
color: #268bd2; }
|
128
|
+
code .kn {
|
129
|
+
color: #859900; }
|
130
|
+
code .kp {
|
131
|
+
color: #859900; }
|
132
|
+
code .kr {
|
133
|
+
color: #268bd2; }
|
134
|
+
code .kt {
|
135
|
+
color: #dc322f; }
|
136
|
+
code .ld {
|
137
|
+
color: #586e75; }
|
138
|
+
code .m {
|
139
|
+
color: #2aa198; }
|
140
|
+
code .s {
|
141
|
+
color: #2aa198; }
|
142
|
+
code .na {
|
143
|
+
color: #586e75; }
|
144
|
+
code .nb {
|
145
|
+
color: #b58900; }
|
146
|
+
code .nc {
|
147
|
+
color: #268bd2; }
|
148
|
+
code .no {
|
149
|
+
color: #cb4b16; }
|
150
|
+
code .nd {
|
151
|
+
color: #268bd2; }
|
152
|
+
code .ni {
|
153
|
+
color: #cb4b16; }
|
154
|
+
code .ne {
|
155
|
+
color: #cb4b16; }
|
156
|
+
code .nf {
|
157
|
+
color: #268bd2; }
|
158
|
+
code .nl {
|
159
|
+
color: #586e75; }
|
160
|
+
code .nn {
|
161
|
+
color: #586e75; }
|
162
|
+
code .nx {
|
163
|
+
color: #586e75; }
|
164
|
+
code .py {
|
165
|
+
color: #586e75; }
|
166
|
+
code .nt {
|
167
|
+
color: #268bd2; }
|
168
|
+
code .nv {
|
169
|
+
color: #268bd2; }
|
170
|
+
code .ow {
|
171
|
+
color: #859900; }
|
172
|
+
code .w {
|
173
|
+
color: #586e75; }
|
174
|
+
code .mf {
|
175
|
+
color: #2aa198; }
|
176
|
+
code .mh {
|
177
|
+
color: #2aa198; }
|
178
|
+
code .mi {
|
179
|
+
color: #2aa198; }
|
180
|
+
code .mo {
|
181
|
+
color: #2aa198; }
|
182
|
+
code .sb {
|
183
|
+
color: #93a1a1; }
|
184
|
+
code .sc {
|
185
|
+
color: #2aa198; }
|
186
|
+
code .sd {
|
187
|
+
color: #586e75; }
|
188
|
+
code .s2 {
|
189
|
+
color: #2aa198; }
|
190
|
+
code .se {
|
191
|
+
color: #cb4b16; }
|
192
|
+
code .sh {
|
193
|
+
color: #586e75; }
|
194
|
+
code .si {
|
195
|
+
color: #dc322f; }
|
196
|
+
code .sx {
|
197
|
+
color: #2aa198; }
|
198
|
+
code .sr {
|
199
|
+
color: #dc322f; }
|
200
|
+
code .s1 {
|
201
|
+
color: #2aa198; }
|
202
|
+
code .ss {
|
203
|
+
color: #2aa198; }
|
204
|
+
code .bp {
|
205
|
+
color: #268bd2; }
|
206
|
+
code .vc {
|
207
|
+
color: #268bd2; }
|
208
|
+
code .vg {
|
209
|
+
color: #268bd2; }
|
210
|
+
code .vi {
|
211
|
+
color: #268bd2; }
|
212
|
+
code .il {
|
213
|
+
color: #2aa198; }
|
@@ -0,0 +1,41 @@
|
|
1
|
+
html, body, div, span, applet, object, iframe,
|
2
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
3
|
+
a, abbr, acronym, address, big, cite, code,
|
4
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
5
|
+
small, strike, strong, sub, sup, tt, var,
|
6
|
+
b, u, i, center,
|
7
|
+
dl, dt, dd, ol, ul, li,
|
8
|
+
fieldset, form, label, legend,
|
9
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
10
|
+
article, aside, canvas, details, embed,
|
11
|
+
figure, figcaption, footer, header, hgroup,
|
12
|
+
menu, nav, output, ruby, section, summary,
|
13
|
+
time, mark, audio, video {
|
14
|
+
margin: 0;
|
15
|
+
padding: 0;
|
16
|
+
border: 0;
|
17
|
+
font-size: 100%;
|
18
|
+
font: inherit;
|
19
|
+
vertical-align: baseline; }
|
20
|
+
|
21
|
+
article, aside, details, figcaption, figure,
|
22
|
+
footer, header, hgroup, menu, nav, section {
|
23
|
+
display: block; }
|
24
|
+
|
25
|
+
body {
|
26
|
+
line-height: 1; }
|
27
|
+
|
28
|
+
ol, ul {
|
29
|
+
list-style: none; }
|
30
|
+
|
31
|
+
blockquote, q {
|
32
|
+
quotes: none; }
|
33
|
+
|
34
|
+
blockquote:before, blockquote:after,
|
35
|
+
q:before, q:after {
|
36
|
+
content: '';
|
37
|
+
content: none; }
|
38
|
+
|
39
|
+
table {
|
40
|
+
border-collapse: collapse;
|
41
|
+
border-spacing: 0; }
|