jekyll-rtd-theme 0.1.0 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +31 -32
- data/_includes/{versions.liquid → addons.liquid} +4 -4
- data/_includes/addons/comments/disqus.liquid +10 -0
- data/_includes/addons/source/github.liquid +3 -9
- data/_includes/assets/js/script.js +1 -0
- data/_includes/breadcrumbs.liquid +29 -25
- data/_includes/extend/list.liquid +15 -0
- data/_includes/extend/tabs.liquid +2 -0
- data/_includes/extend/toctree.liquid +29 -0
- data/_includes/footer.liquid +17 -10
- data/_includes/list.liquid +10 -0
- data/_includes/reset/html.liquid +1 -0
- data/_includes/reset/snippets.liquid +11 -3
- data/_includes/reset/variables.liquid +25 -5
- data/_includes/reset/workspace.liquid +17 -0
- data/_includes/toctree.liquid +17 -0
- data/_layouts/default.liquid +27 -17
- data/_layouts/plugins/compress.liquid +1 -1
- data/_sass/rougify/base16.dark.scss +78 -0
- data/_sass/rougify/base16.light.scss +77 -0
- data/_sass/rougify/base16.monokai.dark.scss +78 -0
- data/_sass/rougify/base16.monokai.light.scss +77 -0
- data/_sass/rougify/base16.monokai.scss +78 -0
- data/_sass/rougify/base16.scss +77 -0
- data/_sass/rougify/base16.solarized.dark.scss +78 -0
- data/_sass/rougify/base16.solarized.light.scss +77 -0
- data/_sass/rougify/base16.solarized.scss +77 -0
- data/_sass/rougify/bw.scss +63 -0
- data/_sass/rougify/colorful.scss +170 -0
- data/_sass/rougify/github.scss +209 -0
- data/_sass/rougify/gruvbox.dark.scss +84 -0
- data/_sass/rougify/gruvbox.light.scss +84 -0
- data/_sass/rougify/gruvbox.scss +84 -0
- data/_sass/rougify/igorpro.scss +32 -0
- data/_sass/rougify/magritte.scss +167 -0
- data/_sass/rougify/molokai.scss +208 -0
- data/_sass/rougify/monokai.scss +210 -0
- data/_sass/rougify/monokai.sublime.scss +198 -0
- data/_sass/rougify/pastie.scss +146 -0
- data/_sass/rougify/thankful_eyes.scss +172 -0
- data/_sass/rougify/tulip.scss +163 -0
- data/_sass/style.scss +4 -0
- data/assets/css/fonts/Roboto-Slab-Bold.woff +0 -0
- data/assets/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- data/assets/css/fonts/Roboto-Slab-Regular.woff +0 -0
- data/assets/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- data/assets/css/fonts/fontawesome-webfont.eot +0 -0
- data/assets/css/fonts/fontawesome-webfont.svg +2671 -0
- data/assets/css/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/css/fonts/fontawesome-webfont.woff +0 -0
- data/assets/css/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/css/fonts/lato-bold-italic.woff +0 -0
- data/assets/css/fonts/lato-bold-italic.woff2 +0 -0
- data/assets/css/fonts/lato-bold.woff +0 -0
- data/assets/css/fonts/lato-bold.woff2 +0 -0
- data/assets/css/fonts/lato-normal-italic.woff +0 -0
- data/assets/css/fonts/lato-normal-italic.woff2 +0 -0
- data/assets/css/fonts/lato-normal.woff +0 -0
- data/assets/css/fonts/lato-normal.woff2 +0 -0
- data/assets/css/theme.css +4 -0
- data/assets/favicon.svg +5 -0
- data/assets/js/anchor.min.js +9 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/theme.js +1 -0
- metadata +56 -7
- data/_includes/sidebar.liquid +0 -52
- data/assets/css/style.scss +0 -2
- data/assets/favicon.png +0 -0
@@ -0,0 +1,209 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0; }
|
3
|
+
.highlight .cm {
|
4
|
+
color: #999988;
|
5
|
+
font-style: italic;
|
6
|
+
}
|
7
|
+
.highlight .cp {
|
8
|
+
color: #999999;
|
9
|
+
font-weight: bold;
|
10
|
+
}
|
11
|
+
.highlight .c1 {
|
12
|
+
color: #999988;
|
13
|
+
font-style: italic;
|
14
|
+
}
|
15
|
+
.highlight .cs {
|
16
|
+
color: #999999;
|
17
|
+
font-weight: bold;
|
18
|
+
font-style: italic;
|
19
|
+
}
|
20
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {
|
21
|
+
color: #999988;
|
22
|
+
font-style: italic;
|
23
|
+
}
|
24
|
+
.highlight .err {
|
25
|
+
color: #a61717;
|
26
|
+
background-color: #e3d2d2;
|
27
|
+
}
|
28
|
+
.highlight .gd {
|
29
|
+
color: #000000;
|
30
|
+
background-color: #ffdddd;
|
31
|
+
}
|
32
|
+
.highlight .ge {
|
33
|
+
color: #000000;
|
34
|
+
font-style: italic;
|
35
|
+
}
|
36
|
+
.highlight .gr {
|
37
|
+
color: #aa0000;
|
38
|
+
}
|
39
|
+
.highlight .gh {
|
40
|
+
color: #999999;
|
41
|
+
}
|
42
|
+
.highlight .gi {
|
43
|
+
color: #000000;
|
44
|
+
background-color: #ddffdd;
|
45
|
+
}
|
46
|
+
.highlight .go {
|
47
|
+
color: #888888;
|
48
|
+
}
|
49
|
+
.highlight .gp {
|
50
|
+
color: #555555;
|
51
|
+
}
|
52
|
+
.highlight .gs {
|
53
|
+
font-weight: bold;
|
54
|
+
}
|
55
|
+
.highlight .gu {
|
56
|
+
color: #aaaaaa;
|
57
|
+
}
|
58
|
+
.highlight .gt {
|
59
|
+
color: #aa0000;
|
60
|
+
}
|
61
|
+
.highlight .kc {
|
62
|
+
color: #000000;
|
63
|
+
font-weight: bold;
|
64
|
+
}
|
65
|
+
.highlight .kd {
|
66
|
+
color: #000000;
|
67
|
+
font-weight: bold;
|
68
|
+
}
|
69
|
+
.highlight .kn {
|
70
|
+
color: #000000;
|
71
|
+
font-weight: bold;
|
72
|
+
}
|
73
|
+
.highlight .kp {
|
74
|
+
color: #000000;
|
75
|
+
font-weight: bold;
|
76
|
+
}
|
77
|
+
.highlight .kr {
|
78
|
+
color: #000000;
|
79
|
+
font-weight: bold;
|
80
|
+
}
|
81
|
+
.highlight .kt {
|
82
|
+
color: #445588;
|
83
|
+
font-weight: bold;
|
84
|
+
}
|
85
|
+
.highlight .k, .highlight .kv {
|
86
|
+
color: #000000;
|
87
|
+
font-weight: bold;
|
88
|
+
}
|
89
|
+
.highlight .mf {
|
90
|
+
color: #009999;
|
91
|
+
}
|
92
|
+
.highlight .mh {
|
93
|
+
color: #009999;
|
94
|
+
}
|
95
|
+
.highlight .il {
|
96
|
+
color: #009999;
|
97
|
+
}
|
98
|
+
.highlight .mi {
|
99
|
+
color: #009999;
|
100
|
+
}
|
101
|
+
.highlight .mo {
|
102
|
+
color: #009999;
|
103
|
+
}
|
104
|
+
.highlight .m, .highlight .mb, .highlight .mx {
|
105
|
+
color: #009999;
|
106
|
+
}
|
107
|
+
.highlight .sb {
|
108
|
+
color: #d14;
|
109
|
+
}
|
110
|
+
.highlight .sc {
|
111
|
+
color: #d14;
|
112
|
+
}
|
113
|
+
.highlight .sd {
|
114
|
+
color: #d14;
|
115
|
+
}
|
116
|
+
.highlight .s2 {
|
117
|
+
color: #d14;
|
118
|
+
}
|
119
|
+
.highlight .se {
|
120
|
+
color: #d14;
|
121
|
+
}
|
122
|
+
.highlight .sh {
|
123
|
+
color: #d14;
|
124
|
+
}
|
125
|
+
.highlight .si {
|
126
|
+
color: #d14;
|
127
|
+
}
|
128
|
+
.highlight .sx {
|
129
|
+
color: #d14;
|
130
|
+
}
|
131
|
+
.highlight .sr {
|
132
|
+
color: #009926;
|
133
|
+
}
|
134
|
+
.highlight .s1 {
|
135
|
+
color: #d14;
|
136
|
+
}
|
137
|
+
.highlight .ss {
|
138
|
+
color: #990073;
|
139
|
+
}
|
140
|
+
.highlight .s, .highlight .sa, .highlight .dl {
|
141
|
+
color: #d14;
|
142
|
+
}
|
143
|
+
.highlight .na {
|
144
|
+
color: #008080;
|
145
|
+
}
|
146
|
+
.highlight .bp {
|
147
|
+
color: #999999;
|
148
|
+
}
|
149
|
+
.highlight .nb {
|
150
|
+
color: #0086B3;
|
151
|
+
}
|
152
|
+
.highlight .nc {
|
153
|
+
color: #445588;
|
154
|
+
font-weight: bold;
|
155
|
+
}
|
156
|
+
.highlight .no {
|
157
|
+
color: #008080;
|
158
|
+
}
|
159
|
+
.highlight .nd {
|
160
|
+
color: #3c5d5d;
|
161
|
+
font-weight: bold;
|
162
|
+
}
|
163
|
+
.highlight .ni {
|
164
|
+
color: #800080;
|
165
|
+
}
|
166
|
+
.highlight .ne {
|
167
|
+
color: #990000;
|
168
|
+
font-weight: bold;
|
169
|
+
}
|
170
|
+
.highlight .nf, .highlight .fm {
|
171
|
+
color: #990000;
|
172
|
+
font-weight: bold;
|
173
|
+
}
|
174
|
+
.highlight .nl {
|
175
|
+
color: #990000;
|
176
|
+
font-weight: bold;
|
177
|
+
}
|
178
|
+
.highlight .nn {
|
179
|
+
color: #555555;
|
180
|
+
}
|
181
|
+
.highlight .nt {
|
182
|
+
color: #000080;
|
183
|
+
}
|
184
|
+
.highlight .vc {
|
185
|
+
color: #008080;
|
186
|
+
}
|
187
|
+
.highlight .vg {
|
188
|
+
color: #008080;
|
189
|
+
}
|
190
|
+
.highlight .vi {
|
191
|
+
color: #008080;
|
192
|
+
}
|
193
|
+
.highlight .nv, .highlight .vm {
|
194
|
+
color: #008080;
|
195
|
+
}
|
196
|
+
.highlight .ow {
|
197
|
+
color: #000000;
|
198
|
+
font-weight: bold;
|
199
|
+
}
|
200
|
+
.highlight .o {
|
201
|
+
color: #000000;
|
202
|
+
font-weight: bold;
|
203
|
+
}
|
204
|
+
.highlight .w {
|
205
|
+
color: #bbbbbb;
|
206
|
+
}
|
207
|
+
.highlight {
|
208
|
+
background-color: #f8f8f8;
|
209
|
+
}
|
@@ -0,0 +1,84 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0; }
|
3
|
+
.highlight, .highlight .w {
|
4
|
+
color: #fbf1c7;
|
5
|
+
background-color: #282828;
|
6
|
+
}
|
7
|
+
.highlight .err {
|
8
|
+
color: #fb4934;
|
9
|
+
background-color: #282828;
|
10
|
+
font-weight: bold;
|
11
|
+
}
|
12
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cpf, .highlight .c1, .highlight .cs {
|
13
|
+
color: #928374;
|
14
|
+
font-style: italic;
|
15
|
+
}
|
16
|
+
.highlight .cp {
|
17
|
+
color: #8ec07c;
|
18
|
+
}
|
19
|
+
.highlight .nt {
|
20
|
+
color: #fb4934;
|
21
|
+
}
|
22
|
+
.highlight .o, .highlight .ow {
|
23
|
+
color: #fbf1c7;
|
24
|
+
}
|
25
|
+
.highlight .p, .highlight .pi {
|
26
|
+
color: #fbf1c7;
|
27
|
+
}
|
28
|
+
.highlight .gi {
|
29
|
+
color: #b8bb26;
|
30
|
+
background-color: #282828;
|
31
|
+
}
|
32
|
+
.highlight .gd {
|
33
|
+
color: #fb4934;
|
34
|
+
background-color: #282828;
|
35
|
+
}
|
36
|
+
.highlight .gh {
|
37
|
+
color: #b8bb26;
|
38
|
+
font-weight: bold;
|
39
|
+
}
|
40
|
+
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
|
41
|
+
color: #fb4934;
|
42
|
+
}
|
43
|
+
.highlight .kc {
|
44
|
+
color: #d3869b;
|
45
|
+
}
|
46
|
+
.highlight .kt {
|
47
|
+
color: #fabd2f;
|
48
|
+
}
|
49
|
+
.highlight .kd {
|
50
|
+
color: #fe8019;
|
51
|
+
}
|
52
|
+
.highlight .s, .highlight .sa, .highlight .sb, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
|
53
|
+
color: #b8bb26;
|
54
|
+
font-style: italic;
|
55
|
+
}
|
56
|
+
.highlight .si {
|
57
|
+
color: #b8bb26;
|
58
|
+
font-style: italic;
|
59
|
+
}
|
60
|
+
.highlight .sr {
|
61
|
+
color: #b8bb26;
|
62
|
+
font-style: italic;
|
63
|
+
}
|
64
|
+
.highlight .se {
|
65
|
+
color: #fe8019;
|
66
|
+
}
|
67
|
+
.highlight .nn {
|
68
|
+
color: #8ec07c;
|
69
|
+
}
|
70
|
+
.highlight .nc {
|
71
|
+
color: #8ec07c;
|
72
|
+
}
|
73
|
+
.highlight .no {
|
74
|
+
color: #d3869b;
|
75
|
+
}
|
76
|
+
.highlight .na {
|
77
|
+
color: #b8bb26;
|
78
|
+
}
|
79
|
+
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
|
80
|
+
color: #d3869b;
|
81
|
+
}
|
82
|
+
.highlight .ss {
|
83
|
+
color: #83a598;
|
84
|
+
}
|
@@ -0,0 +1,84 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0; }
|
3
|
+
.highlight, .highlight .w {
|
4
|
+
color: #282828;
|
5
|
+
background-color: #fbf1c7;
|
6
|
+
}
|
7
|
+
.highlight .err {
|
8
|
+
color: #9d0006;
|
9
|
+
background-color: #fbf1c7;
|
10
|
+
font-weight: bold;
|
11
|
+
}
|
12
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cpf, .highlight .c1, .highlight .cs {
|
13
|
+
color: #928374;
|
14
|
+
font-style: italic;
|
15
|
+
}
|
16
|
+
.highlight .cp {
|
17
|
+
color: #427b58;
|
18
|
+
}
|
19
|
+
.highlight .nt {
|
20
|
+
color: #9d0006;
|
21
|
+
}
|
22
|
+
.highlight .o, .highlight .ow {
|
23
|
+
color: #282828;
|
24
|
+
}
|
25
|
+
.highlight .p, .highlight .pi {
|
26
|
+
color: #282828;
|
27
|
+
}
|
28
|
+
.highlight .gi {
|
29
|
+
color: #79740e;
|
30
|
+
background-color: #fbf1c7;
|
31
|
+
}
|
32
|
+
.highlight .gd {
|
33
|
+
color: #9d0006;
|
34
|
+
background-color: #fbf1c7;
|
35
|
+
}
|
36
|
+
.highlight .gh {
|
37
|
+
color: #79740e;
|
38
|
+
font-weight: bold;
|
39
|
+
}
|
40
|
+
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
|
41
|
+
color: #9d0006;
|
42
|
+
}
|
43
|
+
.highlight .kc {
|
44
|
+
color: #8f3f71;
|
45
|
+
}
|
46
|
+
.highlight .kt {
|
47
|
+
color: #b57614;
|
48
|
+
}
|
49
|
+
.highlight .kd {
|
50
|
+
color: #af3a03;
|
51
|
+
}
|
52
|
+
.highlight .s, .highlight .sa, .highlight .sb, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
|
53
|
+
color: #79740e;
|
54
|
+
font-style: italic;
|
55
|
+
}
|
56
|
+
.highlight .si {
|
57
|
+
color: #79740e;
|
58
|
+
font-style: italic;
|
59
|
+
}
|
60
|
+
.highlight .sr {
|
61
|
+
color: #79740e;
|
62
|
+
font-style: italic;
|
63
|
+
}
|
64
|
+
.highlight .se {
|
65
|
+
color: #af3a03;
|
66
|
+
}
|
67
|
+
.highlight .nn {
|
68
|
+
color: #427b58;
|
69
|
+
}
|
70
|
+
.highlight .nc {
|
71
|
+
color: #427b58;
|
72
|
+
}
|
73
|
+
.highlight .no {
|
74
|
+
color: #8f3f71;
|
75
|
+
}
|
76
|
+
.highlight .na {
|
77
|
+
color: #79740e;
|
78
|
+
}
|
79
|
+
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
|
80
|
+
color: #8f3f71;
|
81
|
+
}
|
82
|
+
.highlight .ss {
|
83
|
+
color: #076678;
|
84
|
+
}
|
@@ -0,0 +1,84 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0; }
|
3
|
+
.highlight, .highlight .w {
|
4
|
+
color: #fbf1c7;
|
5
|
+
background-color: #282828;
|
6
|
+
}
|
7
|
+
.highlight .err {
|
8
|
+
color: #fb4934;
|
9
|
+
background-color: #282828;
|
10
|
+
font-weight: bold;
|
11
|
+
}
|
12
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cpf, .highlight .c1, .highlight .cs {
|
13
|
+
color: #928374;
|
14
|
+
font-style: italic;
|
15
|
+
}
|
16
|
+
.highlight .cp {
|
17
|
+
color: #8ec07c;
|
18
|
+
}
|
19
|
+
.highlight .nt {
|
20
|
+
color: #fb4934;
|
21
|
+
}
|
22
|
+
.highlight .o, .highlight .ow {
|
23
|
+
color: #fbf1c7;
|
24
|
+
}
|
25
|
+
.highlight .p, .highlight .pi {
|
26
|
+
color: #fbf1c7;
|
27
|
+
}
|
28
|
+
.highlight .gi {
|
29
|
+
color: #b8bb26;
|
30
|
+
background-color: #282828;
|
31
|
+
}
|
32
|
+
.highlight .gd {
|
33
|
+
color: #fb4934;
|
34
|
+
background-color: #282828;
|
35
|
+
}
|
36
|
+
.highlight .gh {
|
37
|
+
color: #b8bb26;
|
38
|
+
font-weight: bold;
|
39
|
+
}
|
40
|
+
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
|
41
|
+
color: #fb4934;
|
42
|
+
}
|
43
|
+
.highlight .kc {
|
44
|
+
color: #d3869b;
|
45
|
+
}
|
46
|
+
.highlight .kt {
|
47
|
+
color: #fabd2f;
|
48
|
+
}
|
49
|
+
.highlight .kd {
|
50
|
+
color: #fe8019;
|
51
|
+
}
|
52
|
+
.highlight .s, .highlight .sa, .highlight .sb, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
|
53
|
+
color: #b8bb26;
|
54
|
+
font-style: italic;
|
55
|
+
}
|
56
|
+
.highlight .si {
|
57
|
+
color: #b8bb26;
|
58
|
+
font-style: italic;
|
59
|
+
}
|
60
|
+
.highlight .sr {
|
61
|
+
color: #b8bb26;
|
62
|
+
font-style: italic;
|
63
|
+
}
|
64
|
+
.highlight .se {
|
65
|
+
color: #fe8019;
|
66
|
+
}
|
67
|
+
.highlight .nn {
|
68
|
+
color: #8ec07c;
|
69
|
+
}
|
70
|
+
.highlight .nc {
|
71
|
+
color: #8ec07c;
|
72
|
+
}
|
73
|
+
.highlight .no {
|
74
|
+
color: #d3869b;
|
75
|
+
}
|
76
|
+
.highlight .na {
|
77
|
+
color: #b8bb26;
|
78
|
+
}
|
79
|
+
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
|
80
|
+
color: #d3869b;
|
81
|
+
}
|
82
|
+
.highlight .ss {
|
83
|
+
color: #83a598;
|
84
|
+
}
|