jekyll-theme-zapocalypse 0.1.0

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.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +116 -0
  3. data/README.md +118 -0
  4. data/_includes/head-custom-google-analytics.html +10 -0
  5. data/_includes/head-custom-theme-colors.html +5 -0
  6. data/_includes/head-custom.html +12 -0
  7. data/_layouts/default.html +51 -0
  8. data/_sass/fonts.scss +95 -0
  9. data/_sass/jekyll-theme-zapocalypse.scss +314 -0
  10. data/_sass/midnight.scss +4 -0
  11. data/_sass/normalize.scss +492 -0
  12. data/_sass/rouge-base16-dark.scss +81 -0
  13. data/assets/css/ie.scss +3 -0
  14. data/assets/css/style.scss +4 -0
  15. data/assets/fonts/OpenSans-Bold-webfont.eot +0 -0
  16. data/assets/fonts/OpenSans-Bold-webfont.svg +21062 -0
  17. data/assets/fonts/OpenSans-Bold-webfont.ttf +0 -0
  18. data/assets/fonts/OpenSans-Bold-webfont.woff +0 -0
  19. data/assets/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  20. data/assets/fonts/OpenSans-BoldItalic-webfont.svg +21121 -0
  21. data/assets/fonts/OpenSans-BoldItalic-webfont.ttf +0 -0
  22. data/assets/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  23. data/assets/fonts/OpenSans-Italic-webfont.eot +0 -0
  24. data/assets/fonts/OpenSans-Italic-webfont.svg +21164 -0
  25. data/assets/fonts/OpenSans-Italic-webfont.ttf +0 -0
  26. data/assets/fonts/OpenSans-Italic-webfont.woff +0 -0
  27. data/assets/fonts/OpenSans-Light-webfont.eot +0 -0
  28. data/assets/fonts/OpenSans-Light-webfont.svg +21034 -0
  29. data/assets/fonts/OpenSans-Light-webfont.ttf +0 -0
  30. data/assets/fonts/OpenSans-Light-webfont.woff +0 -0
  31. data/assets/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  32. data/assets/fonts/OpenSans-LightItalic-webfont.svg +21161 -0
  33. data/assets/fonts/OpenSans-LightItalic-webfont.ttf +0 -0
  34. data/assets/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  35. data/assets/fonts/OpenSans-Regular-webfont.eot +0 -0
  36. data/assets/fonts/OpenSans-Regular-webfont.svg +21064 -0
  37. data/assets/fonts/OpenSans-Regular-webfont.ttf +0 -0
  38. data/assets/fonts/OpenSans-Regular-webfont.woff +0 -0
  39. data/assets/fonts/OpenSans-Semibold-webfont.eot +0 -0
  40. data/assets/fonts/OpenSans-Semibold-webfont.svg +21055 -0
  41. data/assets/fonts/OpenSans-Semibold-webfont.ttf +0 -0
  42. data/assets/fonts/OpenSans-Semibold-webfont.woff +0 -0
  43. data/assets/fonts/OpenSans-SemiboldItalic-webfont.eot +0 -0
  44. data/assets/fonts/OpenSans-SemiboldItalic-webfont.svg +21154 -0
  45. data/assets/fonts/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  46. data/assets/fonts/OpenSans-SemiboldItalic-webfont.woff +0 -0
  47. data/assets/images/bullet.png +0 -0
  48. data/assets/images/hr.gif +0 -0
  49. data/assets/images/nav-bg.gif +0 -0
  50. data/assets/js/respond.js +779 -0
  51. metadata +170 -0
@@ -0,0 +1,314 @@
1
+ @import "normalize";
2
+ @import "fonts";
3
+ @import "rouge-base16-dark.scss";
4
+
5
+ body {
6
+ padding:0px 0 20px 0px;
7
+ margin: 0px;
8
+ font:14px/1.5 "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
9
+ color:#f0e7d5;
10
+ font-weight: normal;
11
+ background: #252525;
12
+ background-attachment: fixed !important;
13
+ background: linear-gradient(#2a2a29, #1c1c1c);
14
+ }
15
+
16
+ h1, h2, h3, h4, h5, h6 {
17
+ color:#e8e8e8;
18
+ margin:0 0 10px;
19
+ font-family: 'OpenSansRegular', "Helvetica Neue", Helvetica, Arial, sans-serif;
20
+ font-weight: normal;
21
+ }
22
+
23
+ p, ul, ol, table, pre, dl {
24
+ margin:0 0 20px;
25
+ }
26
+
27
+ h1, h2, h3 {
28
+ line-height:1.1;
29
+
30
+ }
31
+
32
+ h1 {
33
+ font-size:28px;
34
+ }
35
+
36
+ h2 {
37
+ font-size: 24px;
38
+ }
39
+
40
+ h4, h5, h6 {
41
+ color:#e8e8e8;
42
+ }
43
+
44
+ h3 {
45
+ font-size: 18px;
46
+ line-height: 24px;
47
+ font-family: 'OpenSansRegular', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
48
+ font-weight: normal;
49
+ color: #b6b6b6;
50
+ }
51
+
52
+ a {
53
+ color:#ffcc00;
54
+ font-weight:400;
55
+ text-decoration:none;
56
+
57
+ &:hover {
58
+ color: #ffeb9b;
59
+ }
60
+ }
61
+
62
+ a small {
63
+ font-size:11px;
64
+ color:#666;
65
+ margin-top:-0.6em;
66
+ display:block;
67
+ }
68
+
69
+ ul{
70
+ list-style-image:url('../images/bullet.png');
71
+ }
72
+
73
+ strong {
74
+ font-family: 'OpenSansBold', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
75
+ font-weight: normal;
76
+ }
77
+
78
+ .wrapper {
79
+ max-width:650px;
80
+ margin:0 auto;
81
+ position:relative;
82
+ padding: 0 20px;
83
+ }
84
+
85
+ section img {
86
+ max-width: 100%;
87
+ }
88
+
89
+ blockquote {
90
+ border-left:3px solid #ffcc00;
91
+ margin:0;
92
+ padding:0 0 0 20px;
93
+ font-style:italic;
94
+ }
95
+
96
+ code {
97
+ font-family: Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, monospace;
98
+ color:#efefef;
99
+ font-size:13px;
100
+ margin: 0 4px;
101
+ padding: 4px 6px;
102
+ border-radius: 2px;
103
+ }
104
+
105
+ pre {
106
+ padding:8px 15px;
107
+ background: #191919;
108
+ border-radius: 2px;
109
+ border:1px solid #121212;
110
+ box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
111
+ overflow: auto;
112
+ overflow-y: hidden;
113
+
114
+ code {
115
+ color: #efefef;
116
+ text-shadow: 0px 1px 0px #000;
117
+ margin: 0;
118
+ padding: 0;
119
+ }
120
+ }
121
+
122
+ table {
123
+ width:100%;
124
+ border-collapse:collapse;
125
+ }
126
+
127
+ th {
128
+ text-align:left;
129
+ padding:5px 10px;
130
+ border-bottom:1px solid #434343;
131
+ color: #b6b6b6;
132
+ font-family: 'OpenSansSemibold', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
133
+ font-weight: normal;
134
+ }
135
+
136
+ td {
137
+ text-align:left;
138
+ padding:5px 10px;
139
+ border-bottom:1px solid #434343;
140
+ }
141
+
142
+ hr {
143
+ border: 0;
144
+ outline: none;
145
+ height: 3px;
146
+ background: transparent url('../images/hr.gif') center center repeat-x;
147
+ margin: 0 0 20px;
148
+ }
149
+
150
+ dt {
151
+ color:#F0E7D5;
152
+ font-family: 'OpenSansSemibold', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
153
+ font-weight: normal;
154
+ }
155
+
156
+
157
+ #header {
158
+ z-index: 100;
159
+ left:0;
160
+ top: 0px;
161
+ height: 60px;
162
+ width: 100%;
163
+ position: fixed;
164
+ background: url(../images/nav-bg.gif) #353535;
165
+ border-bottom: 4px solid #434343;
166
+ box-shadow: 0px 1px 3px rgba(0,0,0,.25);
167
+
168
+ nav {
169
+ max-width: 650px;
170
+ margin: 0 auto;
171
+ padding: 0 10px;
172
+ background: blue;
173
+ margin: 6px auto;
174
+
175
+ ul {
176
+ list-style-type: none;
177
+ margin: 0;
178
+ padding: 0;
179
+
180
+ li {
181
+ font-family: 'OpenSansLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
182
+ font-weight: normal;
183
+ list-style: none;
184
+ display: inline;
185
+ color: white;
186
+ line-height: 50px;
187
+ text-shadow: 0px 1px 0px rgba(0,0,0,.2);
188
+ font-size: 14px;
189
+
190
+ a {
191
+ color: white;
192
+ border: 1px solid #5d910b;
193
+ background: linear-gradient(#93bd20, #659e10);
194
+ border-radius: 2px;
195
+ box-shadow: inset 0px 1px 0px rgba(255,255,255,.3), 0px 3px 7px rgba(0,0,0,.7);
196
+
197
+ background-color: #93bd20;
198
+ padding: 10px 12px;
199
+ margin-top: 6px;
200
+ line-height:14px;
201
+ font-size:14px;
202
+ display:inline-block;
203
+ text-align:center;
204
+
205
+ &:hover {
206
+ background: linear-gradient(#749619, #527f0e);
207
+ background-color: #659e10;
208
+ border: 1px solid #527f0e;
209
+ box-shadow: inset 0px 1px 1px rgba(0,0,0,.2), 0px 1px 0px rgba(0,0,0,.0);
210
+ }
211
+ }
212
+
213
+ &.fork {
214
+ float: left;
215
+ margin-left: 0px;
216
+ }
217
+
218
+ &.downloads {
219
+ float: right;
220
+ margin-left: 6px;
221
+ }
222
+
223
+ &.title {
224
+ float: right;
225
+ margin-right: 10px;
226
+ font-size: 11px;
227
+ }
228
+ }
229
+ }
230
+ }
231
+ }
232
+
233
+ section {
234
+ max-width:650px;
235
+ padding: 30px 0px 50px 0px;
236
+ margin: 20px 0;
237
+ margin-top: 70px;
238
+
239
+ #title {
240
+ border: 0;
241
+ outline: none;
242
+ margin: 0 0 50px 0;
243
+ padding: 0 0 5px 0;
244
+
245
+ h1 {
246
+ font-family: 'OpenSansLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
247
+ font-weight: normal;
248
+ font-size: 40px;
249
+ text-align: center;
250
+ line-height: 36px;
251
+ }
252
+
253
+ p {
254
+ color: #d7cfbe;
255
+ font-family: 'OpenSansLight', "Helvetica Neue", Helvetica, Arial, sans-serif;
256
+ font-weight: normal;
257
+ font-size: 18px;
258
+ text-align: center;
259
+ }
260
+
261
+ .credits {
262
+ font-size: 11px;
263
+ font-family: 'OpenSansRegular', "Helvetica Neue", Helvetica, Arial, sans-serif;
264
+ font-weight: normal;
265
+ color: #696969;
266
+ margin-top: -10px;
267
+
268
+ &.left {
269
+ float: left;
270
+ }
271
+
272
+ &.right {
273
+ float: right;
274
+ }
275
+ }
276
+
277
+ }
278
+ }
279
+
280
+ @media print, screen and (max-width: 720px) {
281
+
282
+ #title {
283
+ .credits {
284
+ display: block;
285
+ width: 100%;
286
+ line-height: 30px;
287
+ text-align: center;
288
+
289
+ .left {
290
+ float: none;
291
+ display: block;
292
+ }
293
+
294
+ .right {
295
+ float: none;
296
+ display: block;
297
+ }
298
+ }
299
+ }
300
+ }
301
+
302
+ @media print, screen and (max-width: 480px) {
303
+
304
+ #header {
305
+ margin-top: -20px;
306
+ }
307
+
308
+ section {
309
+ margin-top: 40px;
310
+ }
311
+ nav {
312
+ display: none;
313
+ }
314
+ }
@@ -0,0 +1,4 @@
1
+ // Placeholder file. If your site uses
2
+ // @import "{{ site.theme }}";
3
+ // Then using this theme with jekyll-remote-theme will work fine.
4
+ @import "jekyll-theme-midnight";