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,166 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'Yanone Kaffeesatz';
|
3
|
+
font-style: normal;
|
4
|
+
font-weight: 200;
|
5
|
+
src: local("Yanone Kaffeesatz ExtraLight"), local("YanoneKaffeesatz-ExtraLight"), url(../fonts/YanoneKaffeesatz.ExtraLight.woff) format("woff"); }
|
6
|
+
|
7
|
+
@font-face {
|
8
|
+
font-family: 'Yanone Kaffeesatz';
|
9
|
+
font-style: normal;
|
10
|
+
font-weight: 300;
|
11
|
+
src: local("Yanone Kaffeesatz Light"), local("YanoneKaffeesatz-Light"), url(../fonts/YanoneKaffeesatz.Light.woff) format("woff"); }
|
12
|
+
|
13
|
+
@font-face {
|
14
|
+
font-family: 'Yanone Kaffeesatz';
|
15
|
+
font-style: normal;
|
16
|
+
font-weight: 400;
|
17
|
+
src: local("Yanone Kaffeesatz Regular"), local("YanoneKaffeesatz-Regular"), url(../fonts/YanoneKaffeesatz.Regular.woff) format("woff"); }
|
18
|
+
|
19
|
+
@font-face {
|
20
|
+
font-family: 'Yanone Kaffeesatz';
|
21
|
+
font-style: normal;
|
22
|
+
font-weight: 700;
|
23
|
+
src: local("Yanone Kaffeesatz Bold"), local("YanoneKaffeesatz-Bold"), url(../fonts/YanoneKaffeesatz.Bold.woff) format("woff"); }
|
24
|
+
|
25
|
+
@font-face {
|
26
|
+
font-family: 'Goudy Bookletter 1911';
|
27
|
+
src: url(../fonts/GoudyBookletter.1911.woff) format("woff"); }
|
28
|
+
|
29
|
+
@font-face {
|
30
|
+
font-family: 'Raleway';
|
31
|
+
src: url(../fonts/Raleway.Thin.woff) format("woff"); }
|
32
|
+
|
33
|
+
@font-face {
|
34
|
+
font-family: 'Junction';
|
35
|
+
src: url(../fonts/Junction.woff) format("woff"); }
|
36
|
+
|
37
|
+
@font-face {
|
38
|
+
font-family: 'Open Sans';
|
39
|
+
src: url(../fonts/OpenSans.Regular.woff) format("woff"); }
|
40
|
+
|
41
|
+
@font-face {
|
42
|
+
font-weight: 700;
|
43
|
+
font-family: 'Open Sans';
|
44
|
+
src: url(../fonts/OpenSans.Bold.woff) format("woff"); }
|
45
|
+
|
46
|
+
@font-face {
|
47
|
+
font-weight: 700;
|
48
|
+
font-style: italic;
|
49
|
+
font-family: 'Open Sans';
|
50
|
+
src: url(../fonts/OpenSans.BoldItalic.woff) format("woff"); }
|
51
|
+
|
52
|
+
@font-face {
|
53
|
+
font-weight: 600;
|
54
|
+
font-family: 'Open Sans';
|
55
|
+
src: url(../fonts/OpenSans.Semibold.woff) format("woff"); }
|
56
|
+
|
57
|
+
@font-face {
|
58
|
+
font-weight: 600;
|
59
|
+
font-style: italic;
|
60
|
+
font-family: 'Open Sans';
|
61
|
+
src: url(../fonts/OpenSans.SemiboldItalic.woff) format("woff"); }
|
62
|
+
|
63
|
+
@font-face {
|
64
|
+
font-weight: 800;
|
65
|
+
font-family: 'Open Sans';
|
66
|
+
src: url(../fonts/OpenSans.ExtraBold.woff) format("woff"); }
|
67
|
+
|
68
|
+
@font-face {
|
69
|
+
font-weight: 800;
|
70
|
+
font-style: italic;
|
71
|
+
font-family: 'Open Sans';
|
72
|
+
src: url(../fonts/OpenSans.ExtraBoldItalic.woff) format("woff"); }
|
73
|
+
|
74
|
+
@font-face {
|
75
|
+
font-style: italic;
|
76
|
+
font-family: 'Open Sans';
|
77
|
+
src: url(../fonts/OpenSans.Italic.woff) format("woff"); }
|
78
|
+
|
79
|
+
@font-face {
|
80
|
+
font-weight: 300;
|
81
|
+
font-family: 'Open Sans';
|
82
|
+
src: url(../fonts/OpenSans.Light.woff) format("woff"); }
|
83
|
+
|
84
|
+
@font-face {
|
85
|
+
font-family: 'Open Sans Light';
|
86
|
+
src: url(../fonts/OpenSans.Light.woff) format("woff"); }
|
87
|
+
|
88
|
+
@font-face {
|
89
|
+
font-weight: 300;
|
90
|
+
font-style: italic;
|
91
|
+
font-family: 'Open Sans';
|
92
|
+
src: url(../fonts/OpenSans.LightItalic.woff) format("woff"); }
|
93
|
+
|
94
|
+
/* PTSans */
|
95
|
+
@font-face {
|
96
|
+
font-family: 'PT Sans';
|
97
|
+
src: local("PT Sans"), local("PTSansRegular"), url(../fonts/PTSans.woff) format("woff"); }
|
98
|
+
|
99
|
+
@font-face {
|
100
|
+
font-weight: bold;
|
101
|
+
font-family: 'PT Sans';
|
102
|
+
src: local("PT Sans Bold"), local("PTSansBold"), url(../fonts/PTSans.Bold.woff) format("woff"); }
|
103
|
+
|
104
|
+
@font-face {
|
105
|
+
font-style: italic;
|
106
|
+
font-family: 'PT Sans';
|
107
|
+
src: local("PT Sans Italic"), local("PTSansItalic"), url(../fonts/PTSans.Italic.woff) format("woff"); }
|
108
|
+
|
109
|
+
@font-face {
|
110
|
+
font-style: italic;
|
111
|
+
font-weight: bold;
|
112
|
+
font-family: 'PT Sans';
|
113
|
+
src: local("PT Sans Bold Italic"), local("PTSansBoldItalic"), url(../fonts/PTSans.Bold.Italic.woff) format("woff"); }
|
114
|
+
|
115
|
+
@font-face {
|
116
|
+
font-family: 'PT Sans Narrow';
|
117
|
+
src: local("PT Sans Narrow"), local("PTSansNarrow"), url(../fonts/PTSans.Narrow.woff) format("woff"); }
|
118
|
+
|
119
|
+
@font-face {
|
120
|
+
font-family: 'PT Sans Narrow';
|
121
|
+
font-weight: bold;
|
122
|
+
src: local("PT Sans Narrow Bold"), local("PTSansNarrowBold"), url(../fonts/PTSans.Narrow.Bold.woff) format("woff"); }
|
123
|
+
|
124
|
+
/* PT Mono */
|
125
|
+
@font-face {
|
126
|
+
font-family: 'PT Mono';
|
127
|
+
src: local("PT Mono"), local("PTMonoRegular"), url(../fonts/PTMono.woff) format("woff"); }
|
128
|
+
|
129
|
+
/* Linker */
|
130
|
+
@font-face {
|
131
|
+
font-family: 'Target Blank';
|
132
|
+
src: url(../fonts/TargetBlank.otf) format("opentype"), url(../fonts/TargetBlank.svg#TargetBlank) format("svg"); }
|
133
|
+
|
134
|
+
/* Inconcolata */
|
135
|
+
@font-face {
|
136
|
+
font-family: 'Inconsolata';
|
137
|
+
font-style: normal;
|
138
|
+
font-weight: 400;
|
139
|
+
src: local("Inconsolata"), url(../fonts/Inconsolata.woff) format("woff"); }
|
140
|
+
|
141
|
+
@font-face {
|
142
|
+
font-family: 'Inconsolata';
|
143
|
+
font-style: normal;
|
144
|
+
font-weight: 700;
|
145
|
+
src: local("Inconsolata Bold"), local("Inconsolata-Bold"), url(../fonts/Inconsolata.Bold.woff) format("woff"); }
|
146
|
+
|
147
|
+
@font-face {
|
148
|
+
font-family: 'Stix';
|
149
|
+
src: url(../fonts/STIXGeneral.Regular.woff) format("woff"); }
|
150
|
+
|
151
|
+
@font-face {
|
152
|
+
font-family: 'Stix';
|
153
|
+
font-style: normal;
|
154
|
+
font-weight: bold;
|
155
|
+
src: url(../fonts/STIXGeneral.Bold.woff) format("woff"); }
|
156
|
+
|
157
|
+
@font-face {
|
158
|
+
font-family: 'Stix';
|
159
|
+
font-style: italic;
|
160
|
+
font-weight: bold;
|
161
|
+
src: url(../fonts/STIXGeneral.BoldItalic.woff) format("woff"); }
|
162
|
+
|
163
|
+
@font-face {
|
164
|
+
font-family: 'Stix';
|
165
|
+
font-style: italic;
|
166
|
+
src: url(../fonts/STIXGeneral.Italic.woff) format("woff"); }
|
@@ -0,0 +1,215 @@
|
|
1
|
+
code {
|
2
|
+
background-color: #ffffcc;
|
3
|
+
color: #000000;
|
4
|
+
/* Comment */
|
5
|
+
/* Error */
|
6
|
+
/* Keyword */
|
7
|
+
/* Operator */
|
8
|
+
/* Comment.Multiline */
|
9
|
+
/* Comment.Preproc */
|
10
|
+
/* Comment.Single */
|
11
|
+
/* Comment.Special */
|
12
|
+
/* Generic.Deleted */
|
13
|
+
/* Generic.Emph */
|
14
|
+
/* Generic.Error */
|
15
|
+
/* Generic.Heading */
|
16
|
+
/* Generic.Inserted */
|
17
|
+
/* Generic.Output */
|
18
|
+
/* Generic.Prompt */
|
19
|
+
/* Generic.Strong */
|
20
|
+
/* Generic.Subheading */
|
21
|
+
/* Generic.Traceback */
|
22
|
+
/* Keyword.Constant */
|
23
|
+
/* Keyword.Declaration */
|
24
|
+
/* Keyword.Namespace */
|
25
|
+
/* Keyword.Pseudo */
|
26
|
+
/* Keyword.Reserved */
|
27
|
+
/* Keyword.Type */
|
28
|
+
/* Literal.Number */
|
29
|
+
/* Literal.String */
|
30
|
+
/* Name.Attribute */
|
31
|
+
/* Name.Builtin */
|
32
|
+
/* Name.Class */
|
33
|
+
/* Name.Constant */
|
34
|
+
/* Name.Decorator */
|
35
|
+
/* Name.Entity */
|
36
|
+
/* Name.Exception */
|
37
|
+
/* Name.Function */
|
38
|
+
/* Name.Label */
|
39
|
+
/* Name.Namespace */
|
40
|
+
/* Name.Tag */
|
41
|
+
/* Name.Variable */
|
42
|
+
/* Operator.Word */
|
43
|
+
/* Text.Whitespace */
|
44
|
+
/* Literal.Number.Float */
|
45
|
+
/* Literal.Number.Hex */
|
46
|
+
/* Literal.Number.Integer */
|
47
|
+
/* Literal.Number.Oct */
|
48
|
+
/* Literal.String.Backtick */
|
49
|
+
/* Literal.String.Char */
|
50
|
+
/* Literal.String.Doc */
|
51
|
+
/* Literal.String.Double */
|
52
|
+
/* Literal.String.Escape */
|
53
|
+
/* Literal.String.Heredoc */
|
54
|
+
/* Literal.String.Interpol */
|
55
|
+
/* Literal.String.Other */
|
56
|
+
/* Literal.String.Regex */
|
57
|
+
/* Literal.String.Single */
|
58
|
+
/* Literal.String.Symbol */
|
59
|
+
/* Name.Builtin.Pseudo */
|
60
|
+
/* Name.Variable.Class */
|
61
|
+
/* Name.Variable.Global */
|
62
|
+
/* Name.Variable.Instance */
|
63
|
+
/* Literal.Number.Integer.Long */ }
|
64
|
+
code .c {
|
65
|
+
color: gray; }
|
66
|
+
code .err {
|
67
|
+
color: #F00000;
|
68
|
+
background-color: #f0a0a0; }
|
69
|
+
code .k {
|
70
|
+
color: #008000;
|
71
|
+
font-weight: bold; }
|
72
|
+
code .o {
|
73
|
+
color: #303030; }
|
74
|
+
code .cm {
|
75
|
+
color: gray; }
|
76
|
+
code .cp {
|
77
|
+
color: #507090; }
|
78
|
+
code .c1 {
|
79
|
+
color: gray; }
|
80
|
+
code .cs {
|
81
|
+
color: #cc0000;
|
82
|
+
font-weight: bold; }
|
83
|
+
code .gd {
|
84
|
+
color: #a00000; }
|
85
|
+
code .ge {
|
86
|
+
font-style: italic; }
|
87
|
+
code .gr {
|
88
|
+
color: red; }
|
89
|
+
code .gh {
|
90
|
+
color: #000080;
|
91
|
+
font-weight: bold; }
|
92
|
+
code .gi {
|
93
|
+
color: #00a000; }
|
94
|
+
code .go {
|
95
|
+
color: gray; }
|
96
|
+
code .gp {
|
97
|
+
color: #c65d09;
|
98
|
+
font-weight: bold; }
|
99
|
+
code .gs {
|
100
|
+
font-weight: bold; }
|
101
|
+
code .gu {
|
102
|
+
color: #800080;
|
103
|
+
font-weight: bold; }
|
104
|
+
code .gt {
|
105
|
+
color: #0040d0; }
|
106
|
+
code .kc {
|
107
|
+
color: #008000;
|
108
|
+
font-weight: bold; }
|
109
|
+
code .kd {
|
110
|
+
color: #008000;
|
111
|
+
font-weight: bold; }
|
112
|
+
code .kn {
|
113
|
+
color: #008000;
|
114
|
+
font-weight: bold; }
|
115
|
+
code .kp {
|
116
|
+
color: #003080;
|
117
|
+
font-weight: bold; }
|
118
|
+
code .kr {
|
119
|
+
color: #008000;
|
120
|
+
font-weight: bold; }
|
121
|
+
code .kt {
|
122
|
+
color: #303090;
|
123
|
+
font-weight: bold; }
|
124
|
+
code .m {
|
125
|
+
color: #6000E0;
|
126
|
+
font-weight: bold; }
|
127
|
+
code .s {
|
128
|
+
background-color: #fff0f0; }
|
129
|
+
code .na {
|
130
|
+
color: #0000c0; }
|
131
|
+
code .nb {
|
132
|
+
color: #007020; }
|
133
|
+
code .nc {
|
134
|
+
color: #B00060;
|
135
|
+
font-weight: bold; }
|
136
|
+
code .no {
|
137
|
+
color: #003060;
|
138
|
+
font-weight: bold; }
|
139
|
+
code .nd {
|
140
|
+
color: #505050;
|
141
|
+
font-weight: bold; }
|
142
|
+
code .ni {
|
143
|
+
color: #800000;
|
144
|
+
font-weight: bold; }
|
145
|
+
code .ne {
|
146
|
+
color: #F00000;
|
147
|
+
font-weight: bold; }
|
148
|
+
code .nf {
|
149
|
+
color: #0060B0;
|
150
|
+
font-weight: bold; }
|
151
|
+
code .nl {
|
152
|
+
color: #907000;
|
153
|
+
font-weight: bold; }
|
154
|
+
code .nn {
|
155
|
+
color: #0e84b5;
|
156
|
+
font-weight: bold; }
|
157
|
+
code .nt {
|
158
|
+
color: #007000; }
|
159
|
+
code .nv {
|
160
|
+
color: #906030; }
|
161
|
+
code .ow {
|
162
|
+
color: #000000;
|
163
|
+
font-weight: bold; }
|
164
|
+
code .w {
|
165
|
+
color: #bbbbbb; }
|
166
|
+
code .mf {
|
167
|
+
color: #6000E0;
|
168
|
+
font-weight: bold; }
|
169
|
+
code .mh {
|
170
|
+
color: #005080;
|
171
|
+
font-weight: bold; }
|
172
|
+
code .mi {
|
173
|
+
color: #0000D0;
|
174
|
+
font-weight: bold; }
|
175
|
+
code .mo {
|
176
|
+
color: #4000E0;
|
177
|
+
font-weight: bold; }
|
178
|
+
code .sb {
|
179
|
+
background-color: #fff0f0; }
|
180
|
+
code .sc {
|
181
|
+
color: #0040d0; }
|
182
|
+
code .sd {
|
183
|
+
color: #d04020; }
|
184
|
+
code .s2 {
|
185
|
+
background-color: #fff0f0; }
|
186
|
+
code .se {
|
187
|
+
color: #606060;
|
188
|
+
font-weight: bold;
|
189
|
+
background-color: #fff0f0; }
|
190
|
+
code .sh {
|
191
|
+
background-color: #fff0f0; }
|
192
|
+
code .si {
|
193
|
+
background-color: #e0e0e0; }
|
194
|
+
code .sx {
|
195
|
+
color: #D02000;
|
196
|
+
background-color: #fff0f0; }
|
197
|
+
code .sr {
|
198
|
+
color: #000000;
|
199
|
+
background-color: #fff0ff; }
|
200
|
+
code .s1 {
|
201
|
+
background-color: #fff0f0; }
|
202
|
+
code .ss {
|
203
|
+
color: #a06000; }
|
204
|
+
code .bp {
|
205
|
+
color: #007020; }
|
206
|
+
code .vc {
|
207
|
+
color: #306090; }
|
208
|
+
code .vg {
|
209
|
+
color: #d07000;
|
210
|
+
font-weight: bold; }
|
211
|
+
code .vi {
|
212
|
+
color: #3030b0; }
|
213
|
+
code .il {
|
214
|
+
color: #0000D0;
|
215
|
+
font-weight: bold; }
|
@@ -0,0 +1,208 @@
|
|
1
|
+
code {
|
2
|
+
background-color: #ffffcc;
|
3
|
+
color: #000000;
|
4
|
+
/* Comment */
|
5
|
+
/* Error */
|
6
|
+
/* Keyword */
|
7
|
+
/* Operator */
|
8
|
+
/* Comment.Multiline */
|
9
|
+
/* Comment.Preproc */
|
10
|
+
/* Comment.Single */
|
11
|
+
/* Comment.Special */
|
12
|
+
/* Generic.Deleted */
|
13
|
+
/* Generic.Emph */
|
14
|
+
/* Generic.Error */
|
15
|
+
/* Generic.Heading */
|
16
|
+
/* Generic.Inserted */
|
17
|
+
/* Generic.Output */
|
18
|
+
/* Generic.Prompt */
|
19
|
+
/* Generic.Strong */
|
20
|
+
/* Generic.Subheading */
|
21
|
+
/* Generic.Traceback */
|
22
|
+
/* Keyword.Constant */
|
23
|
+
/* Keyword.Declaration */
|
24
|
+
/* Keyword.Namespace */
|
25
|
+
/* Keyword.Pseudo */
|
26
|
+
/* Keyword.Reserved */
|
27
|
+
/* Keyword.Type */
|
28
|
+
/* Literal.Number */
|
29
|
+
/* Literal.String */
|
30
|
+
/* Name.Attribute */
|
31
|
+
/* Name.Builtin */
|
32
|
+
/* Name.Class */
|
33
|
+
/* Name.Constant */
|
34
|
+
/* Name.Decorator */
|
35
|
+
/* Name.Entity */
|
36
|
+
/* Name.Exception */
|
37
|
+
/* Name.Function */
|
38
|
+
/* Name.Label */
|
39
|
+
/* Name.Namespace */
|
40
|
+
/* Name.Tag */
|
41
|
+
/* Name.Variable */
|
42
|
+
/* Operator.Word */
|
43
|
+
/* Text.Whitespace */
|
44
|
+
/* Literal.Number.Float */
|
45
|
+
/* Literal.Number.Hex */
|
46
|
+
/* Literal.Number.Integer */
|
47
|
+
/* Literal.Number.Oct */
|
48
|
+
/* Literal.String.Backtick */
|
49
|
+
/* Literal.String.Char */
|
50
|
+
/* Literal.String.Doc */
|
51
|
+
/* Literal.String.Double */
|
52
|
+
/* Literal.String.Escape */
|
53
|
+
/* Literal.String.Heredoc */
|
54
|
+
/* Literal.String.Interpol */
|
55
|
+
/* Literal.String.Other */
|
56
|
+
/* Literal.String.Regex */
|
57
|
+
/* Literal.String.Single */
|
58
|
+
/* Literal.String.Symbol */
|
59
|
+
/* Name.Builtin.Pseudo */
|
60
|
+
/* Name.Variable.Class */
|
61
|
+
/* Name.Variable.Global */
|
62
|
+
/* Name.Variable.Instance */
|
63
|
+
/* Literal.Number.Integer.Long */ }
|
64
|
+
code .c {
|
65
|
+
color: #999988;
|
66
|
+
font-style: italic; }
|
67
|
+
code .err {
|
68
|
+
color: #a61717;
|
69
|
+
background-color: #e3d2d2; }
|
70
|
+
code .k {
|
71
|
+
color: #000000;
|
72
|
+
font-weight: bold; }
|
73
|
+
code .o {
|
74
|
+
color: #000000;
|
75
|
+
font-weight: bold; }
|
76
|
+
code .cm {
|
77
|
+
color: #999988;
|
78
|
+
font-style: italic; }
|
79
|
+
code .cp {
|
80
|
+
color: #999999;
|
81
|
+
font-weight: bold;
|
82
|
+
font-style: italic; }
|
83
|
+
code .c1 {
|
84
|
+
color: #999988;
|
85
|
+
font-style: italic; }
|
86
|
+
code .cs {
|
87
|
+
color: #999999;
|
88
|
+
font-weight: bold;
|
89
|
+
font-style: italic; }
|
90
|
+
code .gd {
|
91
|
+
color: #000000;
|
92
|
+
background-color: #ffdddd; }
|
93
|
+
code .ge {
|
94
|
+
color: #000000;
|
95
|
+
font-style: italic; }
|
96
|
+
code .gr {
|
97
|
+
color: #aa0000; }
|
98
|
+
code .gh {
|
99
|
+
color: #999999; }
|
100
|
+
code .gi {
|
101
|
+
color: #000000;
|
102
|
+
background-color: #ddffdd; }
|
103
|
+
code .go {
|
104
|
+
color: #888888; }
|
105
|
+
code .gp {
|
106
|
+
color: #555555; }
|
107
|
+
code .gs {
|
108
|
+
font-weight: bold; }
|
109
|
+
code .gu {
|
110
|
+
color: #aaaaaa; }
|
111
|
+
code .gt {
|
112
|
+
color: #aa0000; }
|
113
|
+
code .kc {
|
114
|
+
color: #000000;
|
115
|
+
font-weight: bold; }
|
116
|
+
code .kd {
|
117
|
+
color: #000000;
|
118
|
+
font-weight: bold; }
|
119
|
+
code .kn {
|
120
|
+
color: #000000;
|
121
|
+
font-weight: bold; }
|
122
|
+
code .kp {
|
123
|
+
color: #000000;
|
124
|
+
font-weight: bold; }
|
125
|
+
code .kr {
|
126
|
+
color: #000000;
|
127
|
+
font-weight: bold; }
|
128
|
+
code .kt {
|
129
|
+
color: #445588;
|
130
|
+
font-weight: bold; }
|
131
|
+
code .m {
|
132
|
+
color: #009999; }
|
133
|
+
code .s {
|
134
|
+
color: #d01040; }
|
135
|
+
code .na {
|
136
|
+
color: teal; }
|
137
|
+
code .nb {
|
138
|
+
color: #0086b3; }
|
139
|
+
code .nc {
|
140
|
+
color: #445588;
|
141
|
+
font-weight: bold; }
|
142
|
+
code .no {
|
143
|
+
color: teal; }
|
144
|
+
code .nd {
|
145
|
+
color: #3c5d5d;
|
146
|
+
font-weight: bold; }
|
147
|
+
code .ni {
|
148
|
+
color: purple; }
|
149
|
+
code .ne {
|
150
|
+
color: #990000;
|
151
|
+
font-weight: bold; }
|
152
|
+
code .nf {
|
153
|
+
color: #990000;
|
154
|
+
font-weight: bold; }
|
155
|
+
code .nl {
|
156
|
+
color: #990000;
|
157
|
+
font-weight: bold; }
|
158
|
+
code .nn {
|
159
|
+
color: #555555; }
|
160
|
+
code .nt {
|
161
|
+
color: navy; }
|
162
|
+
code .nv {
|
163
|
+
color: teal; }
|
164
|
+
code .ow {
|
165
|
+
color: #000000;
|
166
|
+
font-weight: bold; }
|
167
|
+
code .w {
|
168
|
+
color: #bbbbbb; }
|
169
|
+
code .mf {
|
170
|
+
color: #009999; }
|
171
|
+
code .mh {
|
172
|
+
color: #009999; }
|
173
|
+
code .mi {
|
174
|
+
color: #009999; }
|
175
|
+
code .mo {
|
176
|
+
color: #009999; }
|
177
|
+
code .sb {
|
178
|
+
color: #d01040; }
|
179
|
+
code .sc {
|
180
|
+
color: #d01040; }
|
181
|
+
code .sd {
|
182
|
+
color: #d01040; }
|
183
|
+
code .s2 {
|
184
|
+
color: #d01040; }
|
185
|
+
code .se {
|
186
|
+
color: #d01040; }
|
187
|
+
code .sh {
|
188
|
+
color: #d01040; }
|
189
|
+
code .si {
|
190
|
+
color: #d01040; }
|
191
|
+
code .sx {
|
192
|
+
color: #d01040; }
|
193
|
+
code .sr {
|
194
|
+
color: #009926; }
|
195
|
+
code .s1 {
|
196
|
+
color: #d01040; }
|
197
|
+
code .ss {
|
198
|
+
color: #990073; }
|
199
|
+
code .bp {
|
200
|
+
color: #999999; }
|
201
|
+
code .vc {
|
202
|
+
color: teal; }
|
203
|
+
code .vg {
|
204
|
+
color: teal; }
|
205
|
+
code .vi {
|
206
|
+
color: teal; }
|
207
|
+
code .il {
|
208
|
+
color: #009999; }
|