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,82 @@
|
|
1
|
+
$yellow: #b58900;
|
2
|
+
$orange: #cb4b16; // constants
|
3
|
+
$red: #dc322f; // regex, special keywords
|
4
|
+
$magenta: #d33682;
|
5
|
+
$violet: #6c71c4;
|
6
|
+
$blue: #268bd2; // reserved keywords
|
7
|
+
$cyan: #2aa198; // strings, numbers
|
8
|
+
$green: #859900; // operators, other keywords
|
9
|
+
|
10
|
+
code {
|
11
|
+
background-color: $base03;
|
12
|
+
color: $base1;
|
13
|
+
|
14
|
+
.c { color: $base01 } /* Comment */
|
15
|
+
.err { color: $base1 } /* Error */
|
16
|
+
.g { color: $base1 } /* Generic */
|
17
|
+
.k { color: $green } /* Keyword */
|
18
|
+
.l { color: $base1 } /* Literal */
|
19
|
+
.n { color: $base1 } /* Name */
|
20
|
+
.o { color: $base1 } /* Operator */
|
21
|
+
.x { color: $orange } /* Other */
|
22
|
+
.p { color: $base1 } /* Punctuation */
|
23
|
+
.cm { color: $base01 } /* Comment.Multiline */
|
24
|
+
.cp { color: $green } /* Comment.Preproc */
|
25
|
+
.c1 { color: $base01 } /* Comment.Single */
|
26
|
+
.cs { color: $green } /* Comment.Special */
|
27
|
+
.gd { color: $cyan } /* Generic.Deleted */
|
28
|
+
.ge { color: $base1; font-style: italic } /* Generic.Emph */
|
29
|
+
.gr { color: $red } /* Generic.Error */
|
30
|
+
.gh { color: $orange } /* Generic.Heading */
|
31
|
+
.gi { color: $green } /* Generic.Inserted */
|
32
|
+
.go { color: $base1 } /* Generic.Output */
|
33
|
+
.gp { color: $base1 } /* Generic.Prompt */
|
34
|
+
.gs { color: $base1; font-weight: bold } /* Generic.Strong */
|
35
|
+
.gu { color: $orange } /* Generic.Subheading */
|
36
|
+
.gt { color: $base1 } /* Generic.Traceback */
|
37
|
+
.kc { color: $orange } /* Keyword.Constant */
|
38
|
+
.kd { color: $blue } /* Keyword.Declaration */
|
39
|
+
.kn { color: $green } /* Keyword.Namespace */
|
40
|
+
.kp { color: $green } /* Keyword.Pseudo */
|
41
|
+
.kr { color: $blue } /* Keyword.Reserved */
|
42
|
+
.kt { color: $red } /* Keyword.Type */
|
43
|
+
.ld { color: $base1 } /* Literal.Date */
|
44
|
+
.m { color: $cyan } /* Literal.Number */
|
45
|
+
.s { color: $cyan } /* Literal.String */
|
46
|
+
.na { color: $base1 } /* Name.Attribute */
|
47
|
+
.nb { color: $yellow } /* Name.Builtin */
|
48
|
+
.nc { color: $blue } /* Name.Class */
|
49
|
+
.no { color: $orange } /* Name.Constant */
|
50
|
+
.nd { color: $blue } /* Name.Decorator */
|
51
|
+
.ni { color: $orange } /* Name.Entity */
|
52
|
+
.ne { color: $orange } /* Name.Exception */
|
53
|
+
.nf { color: $blue } /* Name.Function */
|
54
|
+
.nl { color: $base1 } /* Name.Label */
|
55
|
+
.nn { color: $base1 } /* Name.Namespace */
|
56
|
+
.nx { color: $base1 } /* Name.Other */
|
57
|
+
.py { color: $base1 } /* Name.Property */
|
58
|
+
.nt { color: $blue } /* Name.Tag */
|
59
|
+
.nv { color: $blue } /* Name.Variable */
|
60
|
+
.ow { color: $green } /* Operator.Word */
|
61
|
+
.w { color: $base1 } /* Text.Whitespace */
|
62
|
+
.mf { color: $cyan } /* Literal.Number.Float */
|
63
|
+
.mh { color: $cyan } /* Literal.Number.Hex */
|
64
|
+
.mi { color: $cyan } /* Literal.Number.Integer */
|
65
|
+
.mo { color: $cyan } /* Literal.Number.Oct */
|
66
|
+
.sb { color: $base01 } /* Literal.String.Backtick */
|
67
|
+
.sc { color: $cyan } /* Literal.String.Char */
|
68
|
+
.sd { color: $base1 } /* Literal.String.Doc */
|
69
|
+
.s2 { color: $cyan } /* Literal.String.Double */
|
70
|
+
.se { color: $orange } /* Literal.String.Escape */
|
71
|
+
.sh { color: $base1 } /* Literal.String.Heredoc */
|
72
|
+
.si { color: $red } /* Literal.String.Interpol */
|
73
|
+
.sx { color: $cyan } /* Literal.String.Other */
|
74
|
+
.sr { color: $red } /* Literal.String.Regex */
|
75
|
+
.s1 { color: $cyan } /* Literal.String.Single */
|
76
|
+
.ss { color: $cyan } /* Literal.String.Symbol */
|
77
|
+
.bp { color: $blue } /* Name.Builtin.Pseudo */
|
78
|
+
.vc { color: $blue } /* Name.Variable.Class */
|
79
|
+
.vg { color: $blue } /* Name.Variable.Global */
|
80
|
+
.vi { color: $blue } /* Name.Variable.Instance */
|
81
|
+
.il { color: $cyan } /* Literal.Number.Integer.Long */
|
82
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
//Source: https://raw2.github.com/richleland/pygments-css/master/colorful.css
|
2
|
+
|
3
|
+
code {
|
4
|
+
background-color: #ffffcc;
|
5
|
+
color: #000000;
|
6
|
+
|
7
|
+
.c { color: #808080 } /* Comment */
|
8
|
+
.err { color: #F00000; background-color: #F0A0A0 } /* Error */
|
9
|
+
.k { color: #008000; font-weight: bold } /* Keyword */
|
10
|
+
.o { color: #303030 } /* Operator */
|
11
|
+
.cm { color: #808080 } /* Comment.Multiline */
|
12
|
+
.cp { color: #507090 } /* Comment.Preproc */
|
13
|
+
.c1 { color: #808080 } /* Comment.Single */
|
14
|
+
.cs { color: #cc0000; font-weight: bold } /* Comment.Special */
|
15
|
+
.gd { color: #A00000 } /* Generic.Deleted */
|
16
|
+
.ge { font-style: italic } /* Generic.Emph */
|
17
|
+
.gr { color: #FF0000 } /* Generic.Error */
|
18
|
+
.gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
19
|
+
.gi { color: #00A000 } /* Generic.Inserted */
|
20
|
+
.go { color: #808080 } /* Generic.Output */
|
21
|
+
.gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
22
|
+
.gs { font-weight: bold } /* Generic.Strong */
|
23
|
+
.gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
24
|
+
.gt { color: #0040D0 } /* Generic.Traceback */
|
25
|
+
.kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
26
|
+
.kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
27
|
+
.kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
28
|
+
.kp { color: #003080; font-weight: bold } /* Keyword.Pseudo */
|
29
|
+
.kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
30
|
+
.kt { color: #303090; font-weight: bold } /* Keyword.Type */
|
31
|
+
.m { color: #6000E0; font-weight: bold } /* Literal.Number */
|
32
|
+
.s { background-color: #fff0f0 } /* Literal.String */
|
33
|
+
.na { color: #0000C0 } /* Name.Attribute */
|
34
|
+
.nb { color: #007020 } /* Name.Builtin */
|
35
|
+
.nc { color: #B00060; font-weight: bold } /* Name.Class */
|
36
|
+
.no { color: #003060; font-weight: bold } /* Name.Constant */
|
37
|
+
.nd { color: #505050; font-weight: bold } /* Name.Decorator */
|
38
|
+
.ni { color: #800000; font-weight: bold } /* Name.Entity */
|
39
|
+
.ne { color: #F00000; font-weight: bold } /* Name.Exception */
|
40
|
+
.nf { color: #0060B0; font-weight: bold } /* Name.Function */
|
41
|
+
.nl { color: #907000; font-weight: bold } /* Name.Label */
|
42
|
+
.nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
43
|
+
.nt { color: #007000 } /* Name.Tag */
|
44
|
+
.nv { color: #906030 } /* Name.Variable */
|
45
|
+
.ow { color: #000000; font-weight: bold } /* Operator.Word */
|
46
|
+
.w { color: #bbbbbb } /* Text.Whitespace */
|
47
|
+
.mf { color: #6000E0; font-weight: bold } /* Literal.Number.Float */
|
48
|
+
.mh { color: #005080; font-weight: bold } /* Literal.Number.Hex */
|
49
|
+
.mi { color: #0000D0; font-weight: bold } /* Literal.Number.Integer */
|
50
|
+
.mo { color: #4000E0; font-weight: bold } /* Literal.Number.Oct */
|
51
|
+
.sb { background-color: #fff0f0 } /* Literal.String.Backtick */
|
52
|
+
.sc { color: #0040D0 } /* Literal.String.Char */
|
53
|
+
.sd { color: #D04020 } /* Literal.String.Doc */
|
54
|
+
.s2 { background-color: #fff0f0 } /* Literal.String.Double */
|
55
|
+
.se { color: #606060; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */
|
56
|
+
.sh { background-color: #fff0f0 } /* Literal.String.Heredoc */
|
57
|
+
.si { background-color: #e0e0e0 } /* Literal.String.Interpol */
|
58
|
+
.sx { color: #D02000; background-color: #fff0f0 } /* Literal.String.Other */
|
59
|
+
.sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */
|
60
|
+
.s1 { background-color: #fff0f0 } /* Literal.String.Single */
|
61
|
+
.ss { color: #A06000 } /* Literal.String.Symbol */
|
62
|
+
.bp { color: #007020 } /* Name.Builtin.Pseudo */
|
63
|
+
.vc { color: #306090 } /* Name.Variable.Class */
|
64
|
+
.vg { color: #d07000; font-weight: bold } /* Name.Variable.Global */
|
65
|
+
.vi { color: #3030B0 } /* Name.Variable.Instance */
|
66
|
+
.il { color: #0000D0; font-weight: bold } /* Literal.Number.Integer.Long */
|
67
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
//Source: https://raw.github.com/richleland/pygments-css/master/github.css
|
2
|
+
|
3
|
+
code {
|
4
|
+
background-color: #ffffcc;
|
5
|
+
color: #000000;
|
6
|
+
|
7
|
+
.c { color: #999988; font-style: italic } /* Comment */
|
8
|
+
.err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
9
|
+
.k { color: #000000; font-weight: bold } /* Keyword */
|
10
|
+
.o { color: #000000; font-weight: bold } /* Operator */
|
11
|
+
.cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
12
|
+
.cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
|
13
|
+
.c1 { color: #999988; font-style: italic } /* Comment.Single */
|
14
|
+
.cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
15
|
+
.gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
16
|
+
.ge { color: #000000; font-style: italic } /* Generic.Emph */
|
17
|
+
.gr { color: #aa0000 } /* Generic.Error */
|
18
|
+
.gh { color: #999999 } /* Generic.Heading */
|
19
|
+
.gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
20
|
+
.go { color: #888888 } /* Generic.Output */
|
21
|
+
.gp { color: #555555 } /* Generic.Prompt */
|
22
|
+
.gs { font-weight: bold } /* Generic.Strong */
|
23
|
+
.gu { color: #aaaaaa } /* Generic.Subheading */
|
24
|
+
.gt { color: #aa0000 } /* Generic.Traceback */
|
25
|
+
.kc { color: #000000; font-weight: bold } /* Keyword.Constant */
|
26
|
+
.kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
|
27
|
+
.kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
|
28
|
+
.kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
|
29
|
+
.kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
|
30
|
+
.kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
31
|
+
.m { color: #009999 } /* Literal.Number */
|
32
|
+
.s { color: #d01040 } /* Literal.String */
|
33
|
+
.na { color: #008080 } /* Name.Attribute */
|
34
|
+
.nb { color: #0086B3 } /* Name.Builtin */
|
35
|
+
.nc { color: #445588; font-weight: bold } /* Name.Class */
|
36
|
+
.no { color: #008080 } /* Name.Constant */
|
37
|
+
.nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
|
38
|
+
.ni { color: #800080 } /* Name.Entity */
|
39
|
+
.ne { color: #990000; font-weight: bold } /* Name.Exception */
|
40
|
+
.nf { color: #990000; font-weight: bold } /* Name.Function */
|
41
|
+
.nl { color: #990000; font-weight: bold } /* Name.Label */
|
42
|
+
.nn { color: #555555 } /* Name.Namespace */
|
43
|
+
.nt { color: #000080 } /* Name.Tag */
|
44
|
+
.nv { color: #008080 } /* Name.Variable */
|
45
|
+
.ow { color: #000000; font-weight: bold } /* Operator.Word */
|
46
|
+
.w { color: #bbbbbb } /* Text.Whitespace */
|
47
|
+
.mf { color: #009999 } /* Literal.Number.Float */
|
48
|
+
.mh { color: #009999 } /* Literal.Number.Hex */
|
49
|
+
.mi { color: #009999 } /* Literal.Number.Integer */
|
50
|
+
.mo { color: #009999 } /* Literal.Number.Oct */
|
51
|
+
.sb { color: #d01040 } /* Literal.String.Backtick */
|
52
|
+
.sc { color: #d01040 } /* Literal.String.Char */
|
53
|
+
.sd { color: #d01040 } /* Literal.String.Doc */
|
54
|
+
.s2 { color: #d01040 } /* Literal.String.Double */
|
55
|
+
.se { color: #d01040 } /* Literal.String.Escape */
|
56
|
+
.sh { color: #d01040 } /* Literal.String.Heredoc */
|
57
|
+
.si { color: #d01040 } /* Literal.String.Interpol */
|
58
|
+
.sx { color: #d01040 } /* Literal.String.Other */
|
59
|
+
.sr { color: #009926 } /* Literal.String.Regex */
|
60
|
+
.s1 { color: #d01040 } /* Literal.String.Single */
|
61
|
+
.ss { color: #990073 } /* Literal.String.Symbol */
|
62
|
+
.bp { color: #999999 } /* Name.Builtin.Pseudo */
|
63
|
+
.vc { color: #008080 } /* Name.Variable.Class */
|
64
|
+
.vg { color: #008080 } /* Name.Variable.Global */
|
65
|
+
.vi { color: #008080 } /* Name.Variable.Instance */
|
66
|
+
.il { color: #009999 } /* Literal.Number.Integer.Long */
|
67
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/* Solarized Dark
|
2
|
+
http://ethanschoonover.com/solarized
|
3
|
+
https://gist.github.com/nicolashery/5765395/raw/91ae32653fec817d26ba322cbe9d62192b07b851/solarized-dark.css
|
4
|
+
*/
|
5
|
+
|
6
|
+
$base03: #002b36; // background
|
7
|
+
$base02: #073642;
|
8
|
+
$base01: #586e75; // comments / secondary content
|
9
|
+
$base00: #657b83;
|
10
|
+
$base0: #839496;
|
11
|
+
$base1: #93a1a1; // body text / default code / primary content
|
12
|
+
$base2: #eee8d5;
|
13
|
+
$base3: #fdf6e3;
|
14
|
+
|
15
|
+
@import '_solarized';
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/* Solarized Light
|
2
|
+
http://ethanschoonover.com/solarized
|
3
|
+
https://gist.github.com/nicolashery/5765395/raw/168ea6851298cfd1d5e062ae742e18657b1c7a72/solarized-light.css
|
4
|
+
*/
|
5
|
+
|
6
|
+
$base3: #002b36; // background
|
7
|
+
$base2: #073642;
|
8
|
+
$base1: #586e75; // comments / secondary content
|
9
|
+
$base0: #657b83;
|
10
|
+
$base00: #839496;
|
11
|
+
$base01: #93a1a1; // body text / default code / primary content
|
12
|
+
$base02: #eee8d5;
|
13
|
+
$base03: #fdf6e3;
|
14
|
+
|
15
|
+
@import '_solarized';
|
@@ -0,0 +1,46 @@
|
|
1
|
+
// http://meyerweb.com/eric/tools/css/reset/
|
2
|
+
// v2.0 | 20110126
|
3
|
+
// License: none (public domain)
|
4
|
+
|
5
|
+
html, body, div, span, applet, object, iframe,
|
6
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
7
|
+
a, abbr, acronym, address, big, cite, code,
|
8
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
9
|
+
small, strike, strong, sub, sup, tt, var,
|
10
|
+
b, u, i, center,
|
11
|
+
dl, dt, dd, ol, ul, li,
|
12
|
+
fieldset, form, label, legend,
|
13
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
14
|
+
article, aside, canvas, details, embed,
|
15
|
+
figure, figcaption, footer, header, hgroup,
|
16
|
+
menu, nav, output, ruby, section, summary,
|
17
|
+
time, mark, audio, video {
|
18
|
+
margin:0;
|
19
|
+
padding:0;
|
20
|
+
border:0;
|
21
|
+
font-size:100%;
|
22
|
+
font:inherit;
|
23
|
+
vertical-align:baseline;
|
24
|
+
}
|
25
|
+
article, aside, details, figcaption, figure,
|
26
|
+
footer, header, hgroup, menu, nav, section {
|
27
|
+
display:block;
|
28
|
+
}
|
29
|
+
body {
|
30
|
+
line-height:1;
|
31
|
+
}
|
32
|
+
ol, ul {
|
33
|
+
list-style:none;
|
34
|
+
}
|
35
|
+
blockquote, q {
|
36
|
+
quotes:none;
|
37
|
+
}
|
38
|
+
blockquote:before, blockquote:after,
|
39
|
+
q:before, q:after {
|
40
|
+
content:'';
|
41
|
+
content:none;
|
42
|
+
}
|
43
|
+
table {
|
44
|
+
border-collapse:collapse;
|
45
|
+
border-spacing:0;
|
46
|
+
}
|