jekyll-theme-parallelism 0.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/LICENSE +63 -0
- data/README.md +146 -0
- data/_includes/banner.html +24 -0
- data/_includes/cta.html +15 -0
- data/_includes/footer.html +56 -0
- data/_includes/head.html +10 -0
- data/_includes/header.html +33 -0
- data/_includes/scripts.html +7 -0
- data/_layouts/default.html +24 -0
- data/_layouts/home.html +9 -0
- data/_layouts/page.html +7 -0
- data/_layouts/post.html +5 -0
- data/_sass/libs/_breakpoints.scss +223 -0
- data/_sass/libs/_functions.scss +90 -0
- data/_sass/libs/_mixins.scss +63 -0
- data/_sass/libs/_vars.scss +20 -0
- data/_sass/libs/_vendor.scss +376 -0
- data/_sass/main.scss +676 -0
- data/_sass/noscript.scss +26 -0
- data/assets/css/font-awesome.min.css +4 -0
- data/assets/css/images/dark-bl.svg +17 -0
- data/assets/css/images/dark-br.svg +17 -0
- data/assets/css/images/dark-tl.svg +17 -0
- data/assets/css/images/dark-tr.svg +17 -0
- data/assets/css/images/light-bl.svg +17 -0
- data/assets/css/images/light-br.svg +17 -0
- data/assets/css/images/light-tl.svg +17 -0
- data/assets/css/images/light-tr.svg +17 -0
- data/assets/css/images/loader.gif +0 -0
- data/assets/css/images/overlay.png +0 -0
- data/assets/css/main.css +807 -0
- data/assets/css/noscript.css +16 -0
- data/assets/css/styles.scss +4 -0
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +2671 -0
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/images/banner.jpg +0 -0
- data/assets/images/bg.jpg +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/fulls/01.jpg +0 -0
- data/assets/images/fulls/02.jpg +0 -0
- data/assets/images/fulls/03.jpg +0 -0
- data/assets/images/fulls/04.jpg +0 -0
- data/assets/images/fulls/05.jpg +0 -0
- data/assets/images/fulls/06.jpg +0 -0
- data/assets/images/fulls/07.jpg +0 -0
- data/assets/images/fulls/08.jpg +0 -0
- data/assets/images/logo.svg +21 -0
- data/assets/images/pic01.jpg +0 -0
- data/assets/images/pic02.jpg +0 -0
- data/assets/images/pic03.jpg +0 -0
- data/assets/images/pic04.jpg +0 -0
- data/assets/images/screenshot.jpg +0 -0
- data/assets/images/thumbs/01.jpg +0 -0
- data/assets/images/thumbs/02.jpg +0 -0
- data/assets/images/thumbs/03.jpg +0 -0
- data/assets/images/thumbs/04.jpg +0 -0
- data/assets/images/thumbs/05.jpg +0 -0
- data/assets/images/thumbs/06.jpg +0 -0
- data/assets/images/thumbs/07.jpg +0 -0
- data/assets/images/thumbs/08.jpg +0 -0
- data/assets/js/breakpoints.min.js +2 -0
- data/assets/js/browser.min.js +2 -0
- data/assets/js/jquery.dropotron.min.js +2 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.poptrox.min.js +2 -0
- data/assets/js/jquery.scrollex.min.js +2 -0
- data/assets/js/jquery.scrolly.min.js +2 -0
- data/assets/js/main.js +390 -0
- data/assets/js/util.js +587 -0
- metadata +159 -0
data/_sass/main.scss
ADDED
@@ -0,0 +1,676 @@
|
|
1
|
+
@import 'libs/vars';
|
2
|
+
@import 'libs/functions';
|
3
|
+
@import 'libs/mixins';
|
4
|
+
@import 'libs/vendor';
|
5
|
+
@import 'libs/breakpoints';
|
6
|
+
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600');
|
7
|
+
@import url('font-awesome.min.css');
|
8
|
+
|
9
|
+
/*
|
10
|
+
Parallelism by HTML5 UP
|
11
|
+
html5up.net | @ajlkn
|
12
|
+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
13
|
+
*/
|
14
|
+
|
15
|
+
// Breakpoints.
|
16
|
+
|
17
|
+
@include breakpoints((
|
18
|
+
xlarge: ( 1281px, 1680px ),
|
19
|
+
large: ( 981px, 1280px ),
|
20
|
+
medium: ( 737px, 980px ),
|
21
|
+
small: ( 481px, 736px ),
|
22
|
+
xsmall: ( null, 480px )
|
23
|
+
));
|
24
|
+
|
25
|
+
// Reset.
|
26
|
+
// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
|
27
|
+
|
28
|
+
html, body, div, span, applet, object,
|
29
|
+
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
|
30
|
+
pre, a, abbr, acronym, address, big, cite,
|
31
|
+
code, del, dfn, em, img, ins, kbd, q, s, samp,
|
32
|
+
small, strike, strong, sub, sup, tt, var, b,
|
33
|
+
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
|
34
|
+
form, label, legend, table, caption, tbody,
|
35
|
+
tfoot, thead, tr, th, td, article, aside,
|
36
|
+
canvas, details, embed, figure, figcaption,
|
37
|
+
footer, header, hgroup, menu, nav, output, ruby,
|
38
|
+
section, summary, time, mark, audio, video {
|
39
|
+
margin: 0;
|
40
|
+
padding: 0;
|
41
|
+
border: 0;
|
42
|
+
font-size: 100%;
|
43
|
+
font: inherit;
|
44
|
+
vertical-align: baseline;
|
45
|
+
}
|
46
|
+
|
47
|
+
article, aside, details, figcaption, figure,
|
48
|
+
footer, header, hgroup, menu, nav, section {
|
49
|
+
display: block;
|
50
|
+
}
|
51
|
+
|
52
|
+
body {
|
53
|
+
line-height: 1;
|
54
|
+
}
|
55
|
+
|
56
|
+
ol, ul {
|
57
|
+
list-style: none;
|
58
|
+
}
|
59
|
+
|
60
|
+
blockquote, q {
|
61
|
+
quotes: none;
|
62
|
+
|
63
|
+
&:before,
|
64
|
+
&:after {
|
65
|
+
content: '';
|
66
|
+
content: none;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
table {
|
71
|
+
border-collapse: collapse;
|
72
|
+
border-spacing: 0;
|
73
|
+
}
|
74
|
+
|
75
|
+
body {
|
76
|
+
-webkit-text-size-adjust: none;
|
77
|
+
}
|
78
|
+
|
79
|
+
mark {
|
80
|
+
background-color: transparent;
|
81
|
+
color: inherit;
|
82
|
+
}
|
83
|
+
|
84
|
+
input::-moz-focus-inner {
|
85
|
+
border: 0;
|
86
|
+
padding: 0;
|
87
|
+
}
|
88
|
+
|
89
|
+
input, select, textarea {
|
90
|
+
-moz-appearance: none;
|
91
|
+
-webkit-appearance: none;
|
92
|
+
-ms-appearance: none;
|
93
|
+
appearance: none;
|
94
|
+
}
|
95
|
+
|
96
|
+
/* Basic */
|
97
|
+
|
98
|
+
// Set box model to border-box.
|
99
|
+
// Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
|
100
|
+
html {
|
101
|
+
box-sizing: border-box;
|
102
|
+
}
|
103
|
+
|
104
|
+
*, *:before, *:after {
|
105
|
+
box-sizing: inherit;
|
106
|
+
}
|
107
|
+
|
108
|
+
body {
|
109
|
+
@include vendor('background-image', ('url("images/overlay.png")', 'linear-gradient(top, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.65))', 'url("../../assets/images/bg.jpg")'));
|
110
|
+
background-position: top left, bottom left, auto;
|
111
|
+
background-size: auto, 100% 100%, cover;
|
112
|
+
background-attachment: fixed;
|
113
|
+
background-repeat: repeat, no-repeat, auto;
|
114
|
+
position: relative;
|
115
|
+
background-color: #150C07;
|
116
|
+
line-height: 1.75em;
|
117
|
+
overflow-x: hidden;
|
118
|
+
overflow-y: auto;
|
119
|
+
|
120
|
+
// Stops initial animations until page loads.
|
121
|
+
&.is-preload {
|
122
|
+
*, *:before, *:after {
|
123
|
+
@include vendor('animation', 'none !important');
|
124
|
+
@include vendor('transition', 'none !important');
|
125
|
+
}
|
126
|
+
}
|
127
|
+
|
128
|
+
@include breakpoint('<=large') {
|
129
|
+
background-attachment: scroll;
|
130
|
+
}
|
131
|
+
|
132
|
+
@include breakpoint('<=small') {
|
133
|
+
background-attachment: scroll;
|
134
|
+
background-size: auto, 100% 100%, 250% auto;
|
135
|
+
background-repeat: repeat, no-repeat, no-repeat;
|
136
|
+
background-position: top left, bottom left, 50% 0%;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
body, input, select, textarea {
|
141
|
+
font-family: 'Source Sans Pro';
|
142
|
+
font-weight: 400;
|
143
|
+
padding: 0;
|
144
|
+
font-size: 13pt;
|
145
|
+
color: rgba(255, 255, 255, 0.6);
|
146
|
+
|
147
|
+
@include breakpoint('<=xlarge') {
|
148
|
+
font-size: 11pt;
|
149
|
+
}
|
150
|
+
|
151
|
+
@include breakpoint('<=large') {
|
152
|
+
font-size: 10pt;
|
153
|
+
}
|
154
|
+
|
155
|
+
@include breakpoint('<=medium') {
|
156
|
+
font-size: 11pt;
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
a {
|
161
|
+
color: #fff;
|
162
|
+
color: rgba(255, 255, 255, 0.85);
|
163
|
+
text-decoration: none;
|
164
|
+
@include vendor('transition', 'color 0.25s ease-in-out');
|
165
|
+
|
166
|
+
&:hover {
|
167
|
+
color: #d64760;
|
168
|
+
}
|
169
|
+
}
|
170
|
+
|
171
|
+
h1, h2, h3, h4, h5, h6 {
|
172
|
+
font-weight: 400;
|
173
|
+
color: #fff;
|
174
|
+
letter-spacing: -0.05em;
|
175
|
+
}
|
176
|
+
|
177
|
+
strong, b {
|
178
|
+
color: #fff;
|
179
|
+
color: rgba(255, 255, 255, 0.85);
|
180
|
+
font-weight: 600;
|
181
|
+
}
|
182
|
+
|
183
|
+
/* List */
|
184
|
+
|
185
|
+
ul {
|
186
|
+
&.icons {
|
187
|
+
cursor: default;
|
188
|
+
margin: 0 0 0.5em 0;
|
189
|
+
|
190
|
+
li {
|
191
|
+
display: inline-block;
|
192
|
+
font-size: 1.5em;
|
193
|
+
margin-left: 1em;
|
194
|
+
|
195
|
+
span {
|
196
|
+
display: none;
|
197
|
+
}
|
198
|
+
|
199
|
+
a {
|
200
|
+
opacity: 0.35;
|
201
|
+
color: #fff;
|
202
|
+
@include vendor('transition', 'opacity 0.25s ease-in-out');
|
203
|
+
|
204
|
+
&:hover {
|
205
|
+
opacity: 1.0;
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
&:first-child {
|
210
|
+
margin-left: 0;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
@include breakpoint('<=small') {
|
215
|
+
margin: 0 0 2em 0;
|
216
|
+
}
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
/* Icons */
|
221
|
+
|
222
|
+
.icon {
|
223
|
+
position: relative;
|
224
|
+
text-decoration: none;
|
225
|
+
|
226
|
+
&:before {
|
227
|
+
-moz-osx-font-smoothing: grayscale;
|
228
|
+
-webkit-font-smoothing: antialiased;
|
229
|
+
font-family: FontAwesome;
|
230
|
+
font-style: normal;
|
231
|
+
font-weight: normal;
|
232
|
+
text-transform: none !important;
|
233
|
+
}
|
234
|
+
|
235
|
+
> .label {
|
236
|
+
display: none;
|
237
|
+
}
|
238
|
+
}
|
239
|
+
|
240
|
+
/* Wrapper */
|
241
|
+
|
242
|
+
#wrapper {
|
243
|
+
min-height: 100vh;
|
244
|
+
@include vendor('display', 'flex');
|
245
|
+
@include vendor('flex-direction', 'column');
|
246
|
+
@include vendor('justify-content', 'space-between');
|
247
|
+
@include vendor('align-items', 'center');
|
248
|
+
@include vendor('transition', 'filter 0.5s ease-in-out');
|
249
|
+
|
250
|
+
&:before {
|
251
|
+
content: '';
|
252
|
+
display: block;
|
253
|
+
}
|
254
|
+
|
255
|
+
body.is-poptrox-visible & {
|
256
|
+
@include vendor('filter', 'blur(0.25em)');
|
257
|
+
}
|
258
|
+
|
259
|
+
@include breakpoint('<=small') {
|
260
|
+
min-height: 0;
|
261
|
+
}
|
262
|
+
}
|
263
|
+
|
264
|
+
/* Scroll Zone */
|
265
|
+
|
266
|
+
.scrollZone {
|
267
|
+
position: fixed;
|
268
|
+
width: 6rem;
|
269
|
+
height: 100vh;
|
270
|
+
cursor: -moz-grab;
|
271
|
+
cursor: -webkit-grab;
|
272
|
+
cursor: -ms-grab;
|
273
|
+
cursor: grab;
|
274
|
+
z-index: _misc(z-index-base) + 1;
|
275
|
+
|
276
|
+
&.left {
|
277
|
+
left: 0;
|
278
|
+
}
|
279
|
+
|
280
|
+
&.right {
|
281
|
+
right: 0;
|
282
|
+
}
|
283
|
+
|
284
|
+
@include breakpoint('<=small') {
|
285
|
+
display: none;
|
286
|
+
}
|
287
|
+
}
|
288
|
+
|
289
|
+
/* Main */
|
290
|
+
|
291
|
+
#main {
|
292
|
+
$border: 10px;
|
293
|
+
|
294
|
+
@include vendor('transition', 'opacity 1s ease-in-out');
|
295
|
+
@include vendor('transition-delay', '0.5s');
|
296
|
+
position: relative;
|
297
|
+
z-index: 1;
|
298
|
+
width: -moz-min-content;
|
299
|
+
width: -webkit-min-content;
|
300
|
+
width: -ms-min-content;
|
301
|
+
width: min-content;
|
302
|
+
max-width: 100vw;
|
303
|
+
overflow-x: hidden;
|
304
|
+
-webkit-overflow-scrolling: touch;
|
305
|
+
padding: ($border * 0.5);
|
306
|
+
|
307
|
+
.items {
|
308
|
+
@include vendor('display', 'flex');
|
309
|
+
|
310
|
+
> :last-child {
|
311
|
+
border-right: solid $border #ffffff;
|
312
|
+
}
|
313
|
+
}
|
314
|
+
|
315
|
+
.item {
|
316
|
+
$width: 20em;
|
317
|
+
|
318
|
+
@include vendor('flex-grow', '0');
|
319
|
+
@include vendor('flex-shrink', '0');
|
320
|
+
margin: ($border * 0.5);
|
321
|
+
height: 16em;
|
322
|
+
box-shadow: 0 0 0 $border #ffffff;
|
323
|
+
|
324
|
+
&.span-1 {
|
325
|
+
width: $width;
|
326
|
+
}
|
327
|
+
|
328
|
+
&.span-2 {
|
329
|
+
width: $width * 1.5;
|
330
|
+
}
|
331
|
+
|
332
|
+
&.span-3 {
|
333
|
+
width: $width * 2;
|
334
|
+
}
|
335
|
+
|
336
|
+
&.intro {
|
337
|
+
background-color: #d64760;
|
338
|
+
background-image: url('images/overlay.png');
|
339
|
+
@include vendor('display', 'flex');
|
340
|
+
@include vendor('flex-direction', 'column');
|
341
|
+
@include vendor('justify-content', 'center');
|
342
|
+
padding: 1em 3em;
|
343
|
+
|
344
|
+
h1 {
|
345
|
+
font-size: 3em;
|
346
|
+
line-height: 1em;
|
347
|
+
}
|
348
|
+
|
349
|
+
p {
|
350
|
+
font-size: 1.25em;
|
351
|
+
line-height: 1.5em;
|
352
|
+
margin: 0.5em 0 0 0;
|
353
|
+
opacity: 0.65;
|
354
|
+
}
|
355
|
+
}
|
356
|
+
|
357
|
+
&.thumb {
|
358
|
+
display: block;
|
359
|
+
position: relative;
|
360
|
+
background: rgba(255, 255, 255, 0.25);
|
361
|
+
cursor: default;
|
362
|
+
|
363
|
+
h2 {
|
364
|
+
position: absolute;
|
365
|
+
bottom: 0;
|
366
|
+
left: 0;
|
367
|
+
background: rgba(18, 21, 29, 0.85);
|
368
|
+
width: 100%;
|
369
|
+
padding: 1em;
|
370
|
+
font-weight: 400;
|
371
|
+
line-height: 1em;
|
372
|
+
z-index: 2;
|
373
|
+
}
|
374
|
+
|
375
|
+
img {
|
376
|
+
display: block;
|
377
|
+
z-index: 1;
|
378
|
+
position: absolute;
|
379
|
+
top: 0;
|
380
|
+
left: 0;
|
381
|
+
width: 100%;
|
382
|
+
height: 100%;
|
383
|
+
@include vendor('object-fit', 'cover');
|
384
|
+
@include vendor('object-position', 'center');
|
385
|
+
@include vendor('transition', 'opacity 0.75s ease-in-out');
|
386
|
+
@include vendor('transition-delay', '1.25s');
|
387
|
+
}
|
388
|
+
|
389
|
+
@for $i from 1 through 6 {
|
390
|
+
&.delay-#{$i} {
|
391
|
+
img {
|
392
|
+
@include vendor('transition-delay', '#{1.25 + ($i * 0.125)}s');
|
393
|
+
}
|
394
|
+
}
|
395
|
+
}
|
396
|
+
}
|
397
|
+
}
|
398
|
+
|
399
|
+
body.is-preload & {
|
400
|
+
opacity: 0;
|
401
|
+
|
402
|
+
.item {
|
403
|
+
&.thumb {
|
404
|
+
img {
|
405
|
+
opacity: 0;
|
406
|
+
}
|
407
|
+
}
|
408
|
+
}
|
409
|
+
}
|
410
|
+
|
411
|
+
@include breakpoint('<=xlarge') {
|
412
|
+
.item {
|
413
|
+
$width: 17em;
|
414
|
+
|
415
|
+
height: 14em;
|
416
|
+
|
417
|
+
&.span-1 {
|
418
|
+
width: $width;
|
419
|
+
}
|
420
|
+
|
421
|
+
&.span-2 {
|
422
|
+
width: $width * 1.5;
|
423
|
+
}
|
424
|
+
|
425
|
+
&.span-3 {
|
426
|
+
width: $width * 2;
|
427
|
+
}
|
428
|
+
}
|
429
|
+
}
|
430
|
+
|
431
|
+
@include breakpoint('<=small') {
|
432
|
+
$border: 5px;
|
433
|
+
|
434
|
+
width: 100%;
|
435
|
+
overflow-x: hidden;
|
436
|
+
overflow-y: auto;
|
437
|
+
padding: ($border * 0.5);
|
438
|
+
|
439
|
+
.items {
|
440
|
+
@include vendor('flex-wrap', 'wrap');
|
441
|
+
@include vendor('justify-content', 'center');
|
442
|
+
|
443
|
+
> :last-child {
|
444
|
+
border-right: 0;
|
445
|
+
}
|
446
|
+
}
|
447
|
+
|
448
|
+
.item {
|
449
|
+
@include vendor('flex-grow', '1');
|
450
|
+
@include vendor('flex-shrink', '1');
|
451
|
+
width: calc(50vw - #{$border * 3}) !important;
|
452
|
+
margin: ($border * 0.5);
|
453
|
+
box-shadow: 0 0 0 $border #ffffff;
|
454
|
+
|
455
|
+
&.intro {
|
456
|
+
width: calc(100vw - #{$border * 4}) !important;
|
457
|
+
text-align: center;
|
458
|
+
height: auto;
|
459
|
+
padding: 3em;
|
460
|
+
|
461
|
+
h1 {
|
462
|
+
font-size: 2em;
|
463
|
+
}
|
464
|
+
|
465
|
+
p {
|
466
|
+
font-size: 1em;
|
467
|
+
}
|
468
|
+
}
|
469
|
+
|
470
|
+
&.thumb {
|
471
|
+
h2 {
|
472
|
+
display: none;
|
473
|
+
}
|
474
|
+
}
|
475
|
+
}
|
476
|
+
}
|
477
|
+
|
478
|
+
@include breakpoint('<=xsmall') {
|
479
|
+
.item {
|
480
|
+
//width: calc(100vw - #{$border * 4}) !important;
|
481
|
+
height: 10em;
|
482
|
+
}
|
483
|
+
}
|
484
|
+
}
|
485
|
+
|
486
|
+
/* Header */
|
487
|
+
|
488
|
+
#footer {
|
489
|
+
width: 100%;
|
490
|
+
padding: 1.5em;
|
491
|
+
@include vendor('display', 'flex');
|
492
|
+
@include vendor('justify-content', 'space-between');
|
493
|
+
position: relative;
|
494
|
+
z-index: _misc(z-index-base) + 2;
|
495
|
+
|
496
|
+
> section {
|
497
|
+
&:first-child {
|
498
|
+
text-align: left;
|
499
|
+
max-width: 36em;
|
500
|
+
padding-right: 2em;
|
501
|
+
}
|
502
|
+
|
503
|
+
&:last-child {
|
504
|
+
text-align: right;
|
505
|
+
max-width: 36em;
|
506
|
+
}
|
507
|
+
}
|
508
|
+
|
509
|
+
h2 {
|
510
|
+
font-size: 2.25em;
|
511
|
+
margin: 0 0 1em 0;
|
512
|
+
}
|
513
|
+
|
514
|
+
.copyright {
|
515
|
+
li {
|
516
|
+
display: inline-block;
|
517
|
+
margin-left: 1em;
|
518
|
+
padding-left: 1em;
|
519
|
+
border-left: solid 1px rgba(255, 255, 255, 0.25);
|
520
|
+
line-height: 1em;
|
521
|
+
|
522
|
+
&:first-child {
|
523
|
+
border-left: 0;
|
524
|
+
margin-left: 0;
|
525
|
+
padding-left: 0;
|
526
|
+
}
|
527
|
+
}
|
528
|
+
}
|
529
|
+
|
530
|
+
@include breakpoint('<=medium') {
|
531
|
+
@include vendor('flex-direction', 'column');
|
532
|
+
|
533
|
+
> section {
|
534
|
+
&:first-child {
|
535
|
+
width: 100%;
|
536
|
+
padding-right: 0;
|
537
|
+
}
|
538
|
+
|
539
|
+
&:last-child {
|
540
|
+
text-align: left;
|
541
|
+
margin: 1.5em 0 0 0;
|
542
|
+
width: 100%;
|
543
|
+
}
|
544
|
+
}
|
545
|
+
}
|
546
|
+
|
547
|
+
@include breakpoint('<=small') {
|
548
|
+
text-align: center;
|
549
|
+
padding: 3em;
|
550
|
+
|
551
|
+
> section {
|
552
|
+
&:first-child {
|
553
|
+
text-align: center;
|
554
|
+
max-width: 100%;
|
555
|
+
}
|
556
|
+
|
557
|
+
&:last-child {
|
558
|
+
text-align: center;
|
559
|
+
max-width: 100%;
|
560
|
+
}
|
561
|
+
}
|
562
|
+
|
563
|
+
.copyright {
|
564
|
+
li {
|
565
|
+
display: block;
|
566
|
+
margin: 0.75em 0 0 0;
|
567
|
+
padding-left: 0;
|
568
|
+
border-left: 0;
|
569
|
+
|
570
|
+
&:first-child {
|
571
|
+
margin-top: 0;
|
572
|
+
}
|
573
|
+
}
|
574
|
+
}
|
575
|
+
}
|
576
|
+
}
|
577
|
+
|
578
|
+
/* Popup */
|
579
|
+
|
580
|
+
.poptrox-popup {
|
581
|
+
background: #1a1f2c;
|
582
|
+
background: rgba(18, 21, 29, 0.9);
|
583
|
+
box-shadow: 0px 0px 0px 10px #fff, 0px 10px 60px 10px rgba(8, 11, 19, 0.55);
|
584
|
+
cursor: default;
|
585
|
+
|
586
|
+
.loader {
|
587
|
+
display: block;
|
588
|
+
width: 48px;
|
589
|
+
height: 48px;
|
590
|
+
position: absolute;
|
591
|
+
top: 50%;
|
592
|
+
left: 50%;
|
593
|
+
margin: -24px 0 0 -24px;
|
594
|
+
background: url('assets/images/loader.gif');
|
595
|
+
opacity: 0.25;
|
596
|
+
}
|
597
|
+
|
598
|
+
.caption {
|
599
|
+
position: absolute;
|
600
|
+
bottom: 0;
|
601
|
+
left: 0;
|
602
|
+
background: #1a1f2c;
|
603
|
+
background: rgba(18, 21, 29, 0.85);
|
604
|
+
display: block;
|
605
|
+
width: 100%;
|
606
|
+
line-height: 75px;
|
607
|
+
text-align: center;
|
608
|
+
font-size: 1.25em;
|
609
|
+
color: #fff;
|
610
|
+
}
|
611
|
+
|
612
|
+
.nav-next, .nav-previous {
|
613
|
+
text-decoration: none;
|
614
|
+
font-weight: normal;
|
615
|
+
font-style: normal;
|
616
|
+
@include vendor('transition', 'opacity 0.25s ease-in-out');
|
617
|
+
opacity: 0.35;
|
618
|
+
|
619
|
+
&:hover {
|
620
|
+
opacity: 1.0;
|
621
|
+
}
|
622
|
+
}
|
623
|
+
|
624
|
+
.nav-next, .nav-previous {
|
625
|
+
-moz-osx-font-smoothing: grayscale;
|
626
|
+
-webkit-font-smoothing: antialiased;
|
627
|
+
font-family: FontAwesome;
|
628
|
+
font-style: normal;
|
629
|
+
font-weight: normal;
|
630
|
+
text-transform: none !important;
|
631
|
+
width: 150px;
|
632
|
+
height: 75px;
|
633
|
+
position: absolute;
|
634
|
+
bottom: 0;
|
635
|
+
cursor: pointer;
|
636
|
+
font-size: 3em;
|
637
|
+
line-height: 75px;
|
638
|
+
}
|
639
|
+
|
640
|
+
.nav-next {
|
641
|
+
right: 0;
|
642
|
+
text-align: right;
|
643
|
+
padding-right: 30px;
|
644
|
+
&:before {
|
645
|
+
content: '\f105';
|
646
|
+
}
|
647
|
+
}
|
648
|
+
|
649
|
+
.nav-previous {
|
650
|
+
left: 0;
|
651
|
+
text-align: left;
|
652
|
+
padding-left: 30px;
|
653
|
+
&:before {
|
654
|
+
content: '\f104';
|
655
|
+
}
|
656
|
+
}
|
657
|
+
|
658
|
+
@include breakpoint('<=small') {
|
659
|
+
background: #0a0f1c;
|
660
|
+
box-shadow: 0px 0px 30px 10px rgba(8, 11, 19, 0.85);
|
661
|
+
border: solid 2.5px #fff;
|
662
|
+
@include vendor('box-sizing', 'content-box');
|
663
|
+
|
664
|
+
.caption {
|
665
|
+
display: none !important;
|
666
|
+
}
|
667
|
+
|
668
|
+
.nav-next {
|
669
|
+
display: none !important;
|
670
|
+
}
|
671
|
+
|
672
|
+
.nav-previous {
|
673
|
+
display: none !important;
|
674
|
+
}
|
675
|
+
}
|
676
|
+
}
|