blob: 934635117ce2ff502af746eae8c67643729fbb13 [file] [log] [blame]
Unknowne3ebd892018-10-13 05:35:38 -04001/* --------------------------------
2
3Main Components
4Source: https://codepen.io/elorenn/pen/qXzXPv
5
6-------------------------------- */
Unknown286d2942018-10-13 12:34:42 -04007.bsection {
Unknowne3ebd892018-10-13 05:35:38 -04008 position: relative;
9 display: flex;
10 flex-direction: column;
11 justify-content: center;
12 align-items: center;
13 min-width: 1em;
14 overflow: scroll;
15 flex-wrap: wrap;
16 flex-basis: 50%;
17}
Unknown286d2942018-10-13 12:34:42 -040018.bsection:first-of-type {
Unknowne3ebd892018-10-13 05:35:38 -040019 border-right: 2px solid #fff;
20}
21
22.badge {
23 cursor: help;
24 background: #e7cc9c;
25 height: 33%;
26 width: 33%;
27 min-width: 30%;
28 border-radius: 50%;
29 display: flex;
30 justify-content: center;
31 align-items: center;
32 position: relative;
33 -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
34 filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
35 transition: 150ms linear;
36}
37.badge:hover {
38 -webkit-transform: translateY(-2px);
39 transform: translateY(-2px);
40 -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.15));
41 filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.15));
42}
43.badge:active:after {
44 content: 'Prost!';
45 position: absolute;
46 color: #fff;
47 font-family: sans-serif;
48 text-transform: uppercase;
49 font-weight: bold;
50 font-size: 3em;
51 letter-spacing: .1em;
52 top: -25%;
53}
54.badge.anim {
55 height: 33%;
56 width: 33%;
57}
58.badge.anim:active:after {
59 content: 'cheers!';
60}
61
62.beer-single-div {
63 position: relative;
64 height: 150px;
65 width: 112.5px;
66 min-width: 112.5px;
67 margin-top: 30px;
68 background-image: radial-gradient(97.5px 22.5px at 50% 103%, #f1ecdb 40%, transparent 40%), radial-gradient(6px 9px at 15% 67%, #ffe799 80%, transparent 83%), radial-gradient(6px 9px at 15% 18%, #ffe799 80%, transparent 83%), radial-gradient(9px 9px at 25% 85%, #ffda66 80%, transparent 80%), radial-gradient(25.5px 45px at 15% 90%, #ffc200 70%, transparent 70%), radial-gradient(25.5px 25.5px at 15% 5%, #ffc200 70%, transparent 70%), linear-gradient(to right, transparent 0%, transparent 10%, #ffe799 10%, #ffe799 20%, transparent 20%), radial-gradient(6px 6px at 70% 45%, #fecf75 80%, transparent 80%), radial-gradient(7.5px 7.5px at 35% 27%, #ffda66 80%, transparent 80%), radial-gradient(4.5px 4.5px at 80% 12%, #fecf75 80%, transparent 80%), radial-gradient(6px 6px at 60% 81%, #fecf75 80%, transparent 80%), radial-gradient(4.5px 4.5px at 89% 89%, #fecf75 80%, transparent 80%), radial-gradient(7.5px 7.5px at 77% 78%, #fecf75 80%, transparent 80%), radial-gradient(4.5px 4.5px at 40% 57%, #ffda66 80%, transparent 80%), linear-gradient(to right, #ffc200 50%, #fdac10 50%);
69 border-radius: 0 0 15% 15%;
70 border: 9px solid #f1ecdb;
71 /*mug*/
72 box-sizing: border-box;
73}
74.beer-single-div:before {
75 content: '';
76 position: absolute;
77 z-index: -1;
78 border-radius: 0 50% 50% 0;
79 height: 75px;
80 width: 52.5px;
81 top: 22.5px;
82 right: -49.5px;
83 background-color: transparent;
84 box-sizing: border-box;
85 border: 12px solid #f1ecdb;
86 /*mug handle*/
87 border-left: 12px solid transparent;
88}
89.beer-single-div:after {
90 content: '';
91 position: absolute;
92 top: -20%;
93 right: 20%;
94 height: 15px;
95 width: 15px;
96 background: #fffef8;
97 border-radius: 25.5px;
98 box-shadow: 0 16.5px 0 10.5px #fff9de, 0 10.5px 0 10.5px #fffef8, -40.5px 10.5px 0 6px #fff9de, -58.5px 9px 0 9px #fffef8, -27px 18px 0 6px #fff9de, -75px 12px 0 6px #fff9de, -22.5px 0 0 9px #fffef8, 21px 10.5px 0 9px #fffef8, -48px -12px 0 7.5px #fffef8, -27px -21px 0 7.5px #fff9de, -7.5px -10.5px 0 7.5px #fff9de, 10.5px -7.5px 0 1.5px #fffef8, 13.5px -10.5px 0 1.5px #fff9de, 37.5px 10.5px 0 1.5px #fff9de;
99}
100
101.beer-animation-wrapper {
102 position: relative;
103 overflow-y: hidden;
104 padding: 25.5px;
105 padding-right: 0;
106 padding-top: 10%;
107}
108.beer-animation-wrapper .beer {
109 position: relative;
110 height: 150px;
111 width: 112.5px;
112 min-width: 112.5px;
113 margin-top: 48px;
114 margin-right: 40.5px;
115 margin-left: 13.5px;
116 z-index: -2;
117 background-image: radial-gradient(97.5px 22.5px at 50% 103%, #f1ecdb 40%, transparent 40%), linear-gradient(to right, #ffc200 50%, #fdac10 50%);
118 border-radius: 0 0 15% 15%;
119 /*mug*/
120 border: 9px solid #f1ecdb;
121 box-sizing: border-box;
122}
123.beer-animation-wrapper .beer:before {
124 content: '';
125 position: absolute;
126 height: 130%;
127 width: 100%;
128 bottom: -5%;
129 z-index: -1;
130 opacity: 1;
131 -webkit-animation: 3s bubbles linear infinite;
132 animation: 3s bubbles linear infinite;
133 background: radial-gradient(9px 9px at 25% 85%, #ffda66 80%, transparent 80%), radial-gradient(6px 6px at 70% 45%, #fecf75 80%, transparent 80%), radial-gradient(7.5px 7.5px at 35% 40%, #fecf75 80%, transparent 80%), radial-gradient(4.5px 4.5px at 80% 30%, #fecf75 80%, transparent 80%), radial-gradient(6px 6px at 60% 81%, #fecf75 80%, transparent 80%), radial-gradient(4.5px 4.5px at 89% 89%, #fecf75 80%, transparent 80%), radial-gradient(7.5px 7.5px at 77% 78%, #fecf75 80%, transparent 80%), radial-gradient(4.5px 4.5px at 40% 57%, #ffda66 80%, transparent 80%), radial-gradient(3px 3px at 30% 67%, #ffda66 80%, transparent 80%), radial-gradient(3px 3px at 30% 17%, #ffda66 80%, transparent 80%), radial-gradient(4.5px 4.5px at 40% 10%, #ffda66 80%, transparent 80%), radial-gradient(7.5px 7.5px at 62% 24%, #ffda66 80%, transparent 80%), radial-gradient(6px 6px at 18% 31%, #ffda66 80%, transparent 80%), radial-gradient(9px 9px at 83% 60%, #ffda66 80%, transparent 80%);
134}
135.beer-animation-wrapper .beer:after {
136 /*mug handle*/
137 content: '';
138 position: absolute;
139 border-radius: 0 50% 50% 0;
140 height: 75px;
141 width: 49.5px;
142 top: 22.5px;
143 right: -49.5px;
144 background-color: transparent;
145 box-sizing: border-box;
146 border: 12px solid #f1ecdb;
147 border-left: 9px solid #f1ecdb;
148}
149.beer-animation-wrapper .foam {
150 position: relative;
151 top: -20%;
152 left: 63%;
153 height: 15px;
154 width: 15px;
155 background: #fffef8;
156 border-radius: 25.5px;
157 box-shadow: -52.5px 42px 0 -2.25px #ffe799, -52.5px 43.5px 0 -2.25px #ffe799, -52.5px 45px 0 -2.25px #ffe799, -52.5px 46.5px 0 -2.25px #ffe799, -52.5px 48px 0 -2.25px #ffe799, -52.5px 49.5px 0 -2.25px #ffe799, -52.5px 51px 0 -2.25px #ffe799, -52.5px 52.5px 0 -2.25px #ffe799, -52.5px 54px 0 -2.25px #ffe799, -52.5px 55.5px 0 -2.25px #ffe799, -52.5px 57px 0 -2.25px #ffe799, -52.5px 58.5px 0 -2.25px #ffe799, -52.5px 60px 0 -2.25px #ffe799, -52.5px 61.5px 0 -2.25px #ffe799, -52.5px 63px 0 -2.25px #ffe799, -52.5px 64.5px 0 -2.25px #ffe799, -52.5px 66px 0 -2.25px #ffe799, -52.5px 67.5px 0 -2.25px #ffe799, -52.5px 69px 0 -2.25px #ffe799, -52.5px 70.5px 0 -2.25px #ffe799, -52.5px 72px 0 -2.25px #ffe799, -52.5px 73.5px 0 -2.25px #ffe799, -52.5px 75px 0 -2.25px #ffe799, -52.5px 76.5px 0 -2.25px #ffe799, -52.5px 78px 0 -2.25px #ffe799, -52.5px 79.5px 0 -2.25px #ffe799, -52.5px 81px 0 -2.25px #ffe799, -52.5px 82.5px 0 -2.25px #ffe799, -52.5px 84px 0 -2.25px #ffe799, -52.5px 85.5px 0 -2.25px #ffe799, -52.5px 87px 0 -2.25px #ffe799, -52.5px 88.5px 0 -2.25px #ffe799, -52.5px 90px 0 -2.25px #ffe799, -52.5px 91.5px 0 -2.25px #ffe799, -52.5px 93px 0 -2.25px #ffe799, -52.5px 94.5px 0 -2.25px #ffe799, -52.5px 96px 0 -2.25px #ffe799, -52.5px 97.5px 0 -2.25px #ffe799, -52.5px 99px 0 -2.25px #ffe799, -52.5px 100.5px 0 -2.25px #ffe799, -52.5px 102px 0 -2.25px #ffe799, -52.5px 103.5px 0 -2.25px #ffe799, -52.5px 105px 0 -2.25px #ffe799, -52.5px 106.5px 0 -2.25px #ffe799, -52.5px 108px 0 -2.25px #ffe799, -52.5px 109.5px 0 -2.25px #ffe799, 0 16.5px 0 10.5px #fff9de, 0 10.5px 0 10.5px #fffef8, -40.5px 10.5px 0 6px #fff9de, -58.5px 9px 0 9px #fffef8, -27px 18px 0 6px #fff9de, -75px 12px 0 6px #fff9de, -22.5px 0 0 9px #fffef8, 21px 10.5px 0 9px #fffef8, -48px -12px 0 7.5px #fffef8, -27px -21px 0 7.5px #fff9de, -7.5px -10.5px 0 7.5px #fff9de, 10.5px -7.5px 0 1.5px #fffef8, 13.5px -10.5px 0 1.5px #fff9de, 37.5px 10.5px 0 1.5px #fff9de;
158}
159.beer-animation-wrapper .foam:before, .beer-animation-wrapper .foam:after {
160 z-index: -1;
161 content: '';
162 position: absolute;
163 top: 200%;
164 width: 15px;
165 border-radius: 25.5px;
166 background: #fff9de;
167 background: linear-gradient(to right, #fff9de 75%, #fffef8 75%);
168}
169.beer-animation-wrapper .foam:after {
170 left: 100%;
171 height: 0px;
172 -webkit-animation: drip1 2s ease-out forwards;
173 animation: drip1 2s ease-out forwards;
174}
175.beer-animation-wrapper .foam:before {
176 right: 25%;
177 height: 0px;
178 -webkit-animation: drip2 5s ease-out forwards;
179 animation: drip2 5s ease-out forwards;
180}
181
Unknowndafcc3d2018-10-15 23:30:11 -0400182#popup-modal .modal-body {
183 background:url(https://i.imgur.com/f4wfsnL.jpg);
184 background-size:cover;
185 padding:0;
186 position:relative;
Unknownd2db0f12019-01-10 14:22:00 -0500187 height:300px;
Unknowndafcc3d2018-10-15 23:30:11 -0400188 border-top-left-radius:6px;
189 border-top-right-radius:6px;
190}
191
192#popup-modal h1 {
193 color:#fff;
194 margin:0;
195 padding-top:30px;
196 text-transform:uppercase;
197 letter-spacing:3px;
198 font-weight:100;
199}
200
201#popup-modal h1 span {
202 color:#888;
203 font-weight:700;
204}
205
206#popup-modal p {
207 color:#ccc;
208 font-weight:400;
209}
210
211#popup-modal .modal-social {
Unknownd2db0f12019-01-10 14:22:00 -0500212 /*position:absolute;
Unknowndafcc3d2018-10-15 23:30:11 -0400213 right: 65px;
214 top: 130px;
Unknownd2db0f12019-01-10 14:22:00 -0500215 width: 215px;*/
Unknowndafcc3d2018-10-15 23:30:11 -0400216}
217
218#popup-modal .modal-box {
219 margin: auto;
220 position:absolute;
Unknownd2db0f12019-01-10 14:22:00 -0500221 top: 40%; left: 15%; bottom: 50%; right: 15%;
Unknowndafcc3d2018-10-15 23:30:11 -0400222 z-index:9999;
223}
224
Unknowndafcc3d2018-10-15 23:30:11 -0400225.overlay {
226 position: fixed;
227 top: 0;
228 bottom: 0;
229 left: 0;
230 right: 0;
231 background: rgba(0, 0, 0, 0.7);
232 transition: opacity 500ms;
233 visibility: hidden;
234 opacity: 0;
235}
236.overlay:target {
237 visibility: visible;
238 opacity: 1;
239}
240
241.popup {
242 margin: 70px auto;
243 padding: 20px;
244 background: #fff;
245 border-radius: 5px;
246 width: 30%;
247 position: relative;
248 transition: all 5s ease-in-out;
249}
250
251.popup h2 {
252 margin-top: 0;
253 color: #333;
254 font-family: Tahoma, Arial, sans-serif;
255}
256.popup .close {
257 position: absolute;
258 top: 20px;
259 right: 30px;
260 transition: all 200ms;
261 font-size: 30px;
262 font-weight: bold;
263 text-decoration: none;
264 color: #333;
265}
266.popup .close:hover {
267 color: #06D85F;
268}
269.popup .content {
270 max-height: 30%;
271 overflow: auto;
272}
273
274@media screen and (max-width: 700px){
275 .box{
276 width: 70%;
277 }
278 .popup{
279 width: 70%;
280 }
281}
282
283/********Grid Widht *******/
284.grid-3 { width: 25%; float: left; min-height: 1px; padding-left: 15px; padding-right: 15px;
285 position: relative;}
286/********Grid Widht *******/
287
288
289
290
291/***Section Css******/
292.counting {
293 /* background: #34495e none repeat scroll 0 0; */
294 color: #fff;
295 overflow: hidden;
296 padding: 36px 0;
297}
298
299.counting span {
300 font-size: 70px;
301 font-weight: 700;
302 position: relative;
303 text-align:center;
304 display:block;
305}
306.counting p {
307 font-size: 20px;
308 font-weight: 700;
309 letter-spacing: 2px;
310 padding-top: 30px;
311 text-transform: uppercase;
312 text-align:center;
313}
314
315.counting span::before {
316 /*background: #b7b7b7 none repeat scroll 0 0; */
317 bottom: -10px;
318 content: " ";
319 height: 4px;
320 left: 32%;
321 position: absolute;
322 width: 36%;
323}
324
325
326@media (max-width:980px) {
327 .layout { width: 767px; }
328 .grid-3 { width: 50%; }
329}
330@media (max-width:640px) {
331 .layout { width: 300px; }
332 .grid-3 { width: 100%; }
333
334
335 }
336
Unknowne3ebd892018-10-13 05:35:38 -0400337@-webkit-keyframes drip2 {
338 0% {
339 height: 0px;
340 }
341 50% {
342 height: 45px;
343 }
344 75% {
345 height: 45px;
346 }
347 80% {
348 height: 45px;
349 }
350 100% {
351 height: 52.5px;
352 }
353}
354
355@keyframes drip2 {
356 0% {
357 height: 0px;
358 }
359 50% {
360 height: 45px;
361 }
362 75% {
363 height: 45px;
364 }
365 80% {
366 height: 45px;
367 }
368 100% {
369 height: 52.5px;
370 }
371}
372@-webkit-keyframes drip1 {
373 0% {
374 height: 0px;
375 }
376 100% {
377 height: 75px;
378 }
379}
380@keyframes drip1 {
381 0% {
382 height: 0px;
383 }
384 100% {
385 height: 75px;
386 }
387}
388@-webkit-keyframes bubbles {
389 0% {
390 -webkit-transform: translatey(0%);
391 transform: translatey(0%);
392 }
393 99% {
394 -webkit-transform: translatey(-50%);
395 transform: translatey(-50%);
396 }
397 100% {
398 opacity: 0;
399 }
400}
401@keyframes bubbles {
402 0% {
403 -webkit-transform: translatey(0%);
404 transform: translatey(0%);
405 }
406 99% {
407 -webkit-transform: translatey(-50%);
408 transform: translatey(-50%);
409 }
410 100% {
411 opacity: 0;
412 }
413}
Unknownd2db0f12019-01-10 14:22:00 -0500414
415/* Anim
416width: 378px;
417 height: 290px;
418 */
419.animation {
420 display: inline-block;
421 position: relative;
422 width: 46em;
423 height: 30em;
424 margin: -2vh auto 0 auto;
425 vertical-align: middle;
426}
427@media (max-width:720px) {
428 .animation {margin-left:-30rem;margin-right:-30rem;}
429}
430@media (max-width:450px) {
431 .animation {width:58rem;height:38rem;}
432}
433@media (max-width:450px) {
434 .animation {width:58rem;height:38rem;}
435}
436@media (max-width:400px) {
437 .animation {width:55rem;height:36rem;}
438}
439@media (max-width:380px) {
440 .animation {width:50rem;height:33rem;}
441}
442@media (max-width:340px) {
443 .animation {width:47rem;height:31rem;}
444}
445@media (max-width:320px) {
446 .animation {width:42rem;height:28rem;}
447}
448@media (max-height:650px) {
449 .animation {margin-top: -7vh !important;margin-bottom: 10vh !important;}
450}
451@media (min-height:651px) {
452 .animation {margin-top: -8vh !important;margin-bottom: 10vh !important;}
453}
454@media (min-height:670px) {
455 .animation {margin-top: -6.5vh !important;margin-bottom: 10vh !important;}
456}
457@media (min-height:720px) {
458 .animation {margin-top: -2vh !important;margin-bottom: 10vh !important;overflow-y:visible}
459}
460@media (min-height:800px) {
461 .animation {margin-top: 0 !important;margin-bottom: 10vh !important;overflow-y:visible}
462}
463.animation .device {
464 position: absolute;
465 width: 100%;
466 height: 100%;
467 left: 50%;
468 top: 50%;
469 background: #111;
470 -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
471 -moz-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
472 -ms-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
473 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
474 -moz-transform: translate(-50%, -50%);
475 -ms-transform: translate(-50%, -50%);
476 -webkit-transform: translate(-50%, -50%);
477 transform: translate(-50%, -50%);
478}
479.animation .device .phone-home-button,
480.animation .device .tablet-home-button {
481 position: absolute;
482 border-radius: 50%;
483 background: #444;
484 opacity: 0;
485 z-index: 1;
486 -webkit-transition: all 0.4s ease;
487 -moz-transition: all 0.4s ease;
488 -ms-transition: all 0.4s ease;
489 transition: all 0.4s ease;
490}
491.animation .device .phone-home-button {
492 width: 16px;
493 height: 16px;
494 margin-top: -8px;
495 right: 11px;
496 top: 50%;
497}
498.animation .device .tablet-home-button {
499 width: 12px;
500 height: 12px;
501 margin-left: -6px;
502 bottom: 7px;
503 left: 50%;
504}
505.animation .device .screen-stand {
506 position: absolute;
507 width: 100%;
508 margin-left: -10px;
509 margin-top: -1px;
510 top: 60%;
511 opacity: 0;
512 z-index: 1;
513 -webkit-transition: all 0.4s ease-out;
514 -moz-transition: all 0.4s ease-out;
515 -ms-transition: all 0.4s ease-out;
516 transition: all 0.4s ease-out;
517}
518.animation .device .screen-stand .leg {
519 position: absolute;
520 width: 12px;
521 height: 16px;
522 left: 50%;
523 top: 0;
524 margin-left: -6px;
525 background: #111;
526}
527.animation .device .screen-stand .foot {
528 position: absolute;
529 width: 120px;
530 height: 4px;
531 left: 50%;
532 top: 15px;
533 margin-left: -60px;
534 border-top-left-radius: 2px;
535 border-top-right-radius: 2px;
536 background: #111;
537}
538.animation .device .display {
539 position: relative;
540 width: 100%;
541 height: 100%;
542 overflow: hidden;
543 background: #34495e;
544 z-index: 3;
545}
546.animation .device .display div {
547 position: absolute;
548 width: 100%;
549 height: 100%;
550 left: 100%;
551 white-space: nowrap;
552 -webkit-transition: all 0.4s ease;
553 -moz-transition: all 0.4s ease;
554 -ms-transition: all 0.4s ease;
555 transition: all 0.4s ease;
556}
557.animation .device .display div div {
558 position: absolute;
559 width: 100%;
560 left: 0;
561 top: 50%;
562 margin-top: -14px;
563 font-size: 20px;
564 text-align: center;
565 /* color: #0080ff;*/
566}
567@media (max-width:450px) {
568 .animation .device .display div div {width:100%;max-width:100%;font-size:12px !important;}
569}
570 .animation .device .display .slide1 div {margin-top:0px;}
571.animation .device .display div div em {
572 font-weight: bold;
573}
574.animation .device .display .slide1 {
575 /* background: #000; */
576 background: url("https://i.imgur.com/wCp0xpe.jpg");
577 background-size: cover;
578 background-repeat: no-repeat;
579 background-position: center center;
580 text-shadow: 1px 1px 2px #1f1f1f, -1px -1px 2px #1f1f1f, -1px 0 2px #1f1f1f, 0 -1px 2px #1f1f1f, 1px 0 2px #1f1f1f, 0 1px 2px #1f1f1f, 1px -1px 2px #1f1f1f, -1px 1px 2px #1f1f1f,
581 2px 2px 2px #1f1f1f, -2px -2px 2px #1f1f1f, -2px 0 2px #1f1f1f, 0 -2px 2px #1f1f1f, 2px 0 2px #1f1f1f, 0 2px 2px #1f1f1f, 2px -2px 2px #1f1f1f, -2px 2px 2px #1f1f1f,
582 3px 3px 2px #1f1f1f, -3px -3px 2px #1f1f1f, -3px 0 2px #1f1f1f, 0 -3px 2px #1f1f1f, 3px 0 2px #1f1f1f, 0 3px 2px #1f1f1f, 3px -3px 2px #1f1f1f, -3px 3px 2px #1f1f1f,
583 4px 4px 4px #1f1f1f, -4px -4px 4px #1f1f1f, -4px 0 4px #1f1f1f, 0 -4px 4px #1f1f1f, 4px 0 4px #1f1f1f, 0 4px 4px #1f1f1f, 4px -4px 4px #1f1f1f, -4px 4px 4px #1f1f1f;
584 color:white;
585}
586.animation .device .display .slide2 {
587 /* background: #000; */
588 background: url("https://i.imgur.com/KfArkPZ.jpg");
589 background-size: cover;
590 background-repeat: no-repeat;
591 background-position: center center;
592 text-shadow: 1px 1px 2px #fff, -1px -1px 2px #fff, -1px 0 2px #fff, 0 -1px 2px #fff, 1px 0 2px #fff, 0 1px 2px #fff, 1px -1px 2px #fff, -1px 1px 2px #fff,
593 2px 2px 2px #fff, -2px -2px 2px #fff, -2px 0 2px #fff, 0 -2px 2px #fff, 2px 0 2px #fff, 0 2px 2px #fff, 2px -2px 2px #fff, -2px 2px 2px #fff,
594 3px 3px 2px #fff, -3px -3px 2px #fff, -3px 0 2px #fff, 0 -3px 2px #fff, 3px 0 2px #fff, 0 3px 2px #fff, 3px -3px 2px #fff, -3px 3px 2px #fff,
595 4px 4px 4px #fff, -4px -4px 4px #fff, -4px 0 4px #fff, 0 -4px 4px #fff, 4px 0 4px #fff, 0 4px 4px #fff, 4px -4px 4px #fff, -4px 4px 4px #fff;
596 color:#0080ff;
597}
598.animation .device .display .slide3 {
599 /* background: #000; */
600 background: url("https://i.imgur.com/c55mey7.jpg");
601 background-size: cover;
602 background-repeat: no-repeat;
603 background-position: center center;
604 text-shadow: 1px 1px 2px #000, -1px -1px 2px #000, -1px 0 2px #000, 0 -1px 2px #000, 1px 0 2px #000, 0 1px 2px #000, 1px -1px 2px #000, -1px 1px 2px #000,
605 2px 2px 2px #000, -2px -2px 2px #000, -2px 0 2px #000, 0 -2px 2px #000, 2px 0 2px #000, 0 2px 2px #000, 2px -2px 2px #000, -2px 2px 2px #000,
606 3px 3px 2px #000, -3px -3px 2px #000, -3px 0 2px #000, 0 -3px 2px #000, 3px 0 2px #000, 0 3px 2px #000, 3px -3px 2px #000, -3px 3px 2px #000,
607 4px 4px 4px #000, -4px -4px 4px #000, -4px 0 4px #000, 0 -4px 4px #000, 4px 0 4px #000, 0 4px 4px #000, 4px -4px 4px #000, -4px 4px 4px #000;
608 color:white;
609}
610.animation[data-animation-step="1"] .device {
611 width: 87%;
612 height: 90%;
613 padding: 10px;
614 border-radius: 4px;
615}
616.animation[data-animation-step="1"] .device .slide1 {
617 left: 0%;
618}
619.animation[data-animation-step="1"] .device .screen-stand {
620 opacity: 1;
621 top: 100%;
622}
623.animation[data-animation-step="2"] .device {
624 width: 74%;
625 height: 75%;
626 padding: 16px;
627 border-radius: 10px;
628}
629.animation[data-animation-step="2"] .device .slide1 {
630 left: -100%;
631}
632.animation[data-animation-step="2"] .device .slide2 {
633 left: 0%;
634}
635.animation[data-animation-step="2"] .device .tablet-home-button {
636 opacity: 1;
637}
638.animation[data-animation-step="3"] .device {
639 width: 27%;
640 height: 75%;
641 padding: 16px 4px;
642 border-radius: 6px;
643}
644.animation[data-animation-step="3"] .device .slide1,
645.animation[data-animation-step="3"] .device .slide2 {
646 left: -100%;
647}
648.animation[data-animation-step="3"] .device .slide3 {
649 left: 0%;
650}
651.animation[data-animation-step="3"] .device .phone-home-button {
652 opacity: 1;
653}
654 @media (min-height:800px) {
655 .animation[data-animation-step="1"] .device {width:87%; height:90%;}
656 .animation[data-animation-step="2"] .device {width:80%; height:80%;}
657 .animation[data-animation-step="3"] .device {width:28%; height:80%;}
658 }
659 @media (max-height:720px) {
660 .animation[data-animation-step="1"] .device {width:72%; height:75%;}
661 .animation[data-animation-step="2"] .device {width:59%; height:60%;}
662 .animation[data-animation-step="3"] .device {width:22%; height:63%;}
663 .animation .device .display div div {font-size:16px;}
664 }
665 @media (max-height:650px) {
666 .animation[data-animation-step="1"] .device {width:62%; height:65%;}
667 .animation[data-animation-step="2"] .device {width:54%; height:55%;}
668 .animation[data-animation-step="3"] .device {width:22%; height:63%;}
669 .animation .device .display div div {font-size:15px;}
670 }
671 @media (max-width:560px) {
672 .animation[data-animation-step="1"] .device {margin-top:1%;width:72%; height:75%;}
673 .animation[data-animation-step="2"] .device {margin-top:1%;width:65%; height:66%;}
674 .animation[data-animation-step="3"] .device {margin-top:1%;width:28%; height:80%;}
675 .animation .device .display div div {font-size:15px;}
676 }
677 @media (max-width:520px) {
678 .animation[data-animation-step="1"] .device {margin-top:0%;width:66%; height:69%;}
679 .animation[data-animation-step="2"] .device {margin-top:0%;width:62%; height:63%;}
680 .animation[data-animation-step="3"] .device {margin-top:0%;width:28%; height:80%;}
681 .animation .device .display div div {font-size:15px;}
682 }
683 @media (max-width:460px) {
684 .animation[data-animation-step="1"] .device {margin-top:0%;width:58%; height:61%;}
685 .animation[data-animation-step="2"] .device {margin-top:0%;width:54%; height:55%;}
686 .animation[data-animation-step="3"] .device {margin-top:0%;width:25%; height:72%;}
687 .animation .device .display div div {font-size:15px;}
688 }
689 @media (max-width:350px) {
690 .animation[data-animation-step="1"] .device {margin-top:3%;width:62%; height:65%;}
691 .animation[data-animation-step="2"] .device {margin-top:3%;width:58%; height:60%;}
692 .animation[data-animation-step="3"] .device {margin-top:9%;width:30%; height:80%;}
693 .animation .device .display div div {font-size:15px;}
694 }
695 @media (max-width:320px) {
696 .animation[data-animation-step="1"] .device {margin-top:6%;width:62%; height:65%;}
697 .animation[data-animation-step="2"] .device {margin-top:6%;width:58%; height:60%;}
698 .animation[data-animation-step="3"] .device {margin-top:12%;width:30%; height:80%;}
699 .animation .device .display div div {font-size:15px;}
700 }
Unknown04051592019-01-10 20:56:19 -0500701
702.glow {
703 font-size: 80px;
704 color: #fff;
705 text-align: center;
706 -webkit-animation: glow 1s ease-in-out infinite alternate;
707 -moz-animation: glow 1s ease-in-out infinite alternate;
708 animation: glow 1s ease-in-out infinite alternate;
709}
710
711@-webkit-keyframes glow {
712 from {
713 text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #0095e6, 0 0 40px #0095e6, 0 0 50px #0095e6, 0 0 60px #0095e6, 0 0 70px #0095e6;
714 }
715 to {
716 text-shadow: 0 0 20px #fff, 0 0 30px #4db1ff, 0 0 40px #4db1ff, 0 0 50px #4db1ff, 0 0 60px #4db1ff, 0 0 70px #4db1ff, 0 0 80px #4db1ff;
717 }
718}
Unknownd2db0f12019-01-10 14:22:00 -0500719
Unknown086c0352019-01-11 23:40:31 -0500720.device {
721 transform: rotateX(25deg) rotateZ(-25deg) translateX(0) scale(.93);
722 margin: auto;
723 position: relative;
724 display: inline-block;
725 background: #333333;
726 box-shadow:
727 0 1px 4px 0 rgba(0,0,0,0.20),
728 0 8px 24px 0 rgba(0,0,0,0.20),
729 0 0 0 1px rgba(0, 0, 0, 0.53),
730 inset 0 -2px 2px 2px rgba(0,0,0,0.55);
731 box-shadow: -1px 1px 4px 0 rgba(0, 0, 0, 0.20), -8px 8px 24px 0 rgba(0, 0, 0, 0.20), inset 5px -5px 5px 5px rgba(0, 0, 0, 0.24);
732 border-radius: 40px;
733 position: relative;
734 box-sizing: content-box;
735 padding: 50px 10px;
736 padding: 45px 10px 55px 20px;
737 width: 200px;
738 height: 360px;
739}
740.device-screen {
741 width: 98%;
742 height: 98%;
743 background: #111111;
744 overflow: hidden;
745 border-radius: 4px;
746 box-shadow: inset 0px 1px 3px rgba(0,0,0,0.1);
747 position: relative;
748}
749.device-screen:before {
750 content: "";
751 top: 0;
752 bottom: 0;
753 width: 98%;
754 height: 98%;
755 box-shadow: inset 0px 1px 3px rgba(0,0,0,0.1);
756 position: absolute;
757 border-radius: 8px;
758 overflow: hidden;
759}
760.device video {
761 border-radius: 0px;
762 width: 100%;
763 height: 105%;
764 object-fit: cover;
765}
766
767.device-screen img {
768 height: 100%;
769 width: 105%;
770 object-fit: cover;
771}
772
773@media (max-width: 850px) {
774 .device {
775 border-radius: 4.6vw;
776 padding: 6vw 1.2vw;
777 width: 33vw;
778 height: 59vw;
779 }
780 .device video,
781 .device-screen {
782 border-radius: .33vw;
783 }
784}
785
786
787
788