PluginProbe
Amedea – Unique Design Elements for Elementor / trunk
Amedea – Unique Design Elements for Elementor vtrunk
trunk 0.0.4.7
amedea / assets / css / on-scroll-grid.css

on-scroll-grid.css in Amedea – Unique Design Elements for Elementor trunk, at assets/css/on-scroll-grid.css

733 lines 5.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2
3
4
5 Author : Amedea
6
7 Author URI : https://amedeapro.com
8
9 Author : Moskva Yigit
10
11 Author URI : http://moskvayigit.com
12
13 Version : 0.0.3.9
14
15
16
17 Table of Contents
18
19 - On-Scroll Grid
20
21 - Grid Defination
22
23
24
25 */
26
27
28
29 /*----------------------------
30
31 .-- On-Scroll Grid
32
33 -----------------------------*/
34
35
36
37 .dark .grid--content__item-caption h3,
38
39 .dark .grid--content__item-caption span{
40
41 color: var(--amedea--preset--color--black);
42
43 }
44
45
46
47 .light .grid--content__item-caption h3,
48
49 .light .grid--content__item-caption span{
50
51 color: var(--amedea--preset--color--white);
52
53 }
54
55
56
57 .grid--content {
58
59 width: 100%;
60
61 grid-template-columns: repeat(8,1fr);
62
63 grid-auto-rows: auto;
64
65 display: grid;
66
67 position: relative;
68
69 margin: 0vh auto 50vh;
70
71 overflow-y: hidden;
72
73 }
74
75
76
77 .grid--content__item {
78
79 position: relative;
80
81 margin: 5vw;
82
83 }
84
85
86
87 .grid--content__item-img {
88
89 position: relative;
90
91 overflow: hidden;
92
93 display: grid;
94
95 place-items: center;
96
97 width: 100%;
98
99 height: auto;
100
101 aspect-ratio: 1.5;
102
103 }
104
105
106
107 .grid--content-v4 .grid--content__item-img {
108
109 aspect-ratio: 1;
110
111 }
112
113
114
115 .grid--content__item-img-inner {
116
117 width: 100%;
118
119 height: 100%;
120
121 background-position: 50%;
122
123 background-size: cover;
124
125 position: relative;
126
127 }
128
129
130
131 .grid--content__item-caption {
132
133 position: absolute;
134
135 padding: 0.5rem;
136
137 display: grid;
138
139 gap: 0.5rem;
140
141 }
142
143
144
145
146
147 .grid--content__item-caption h3 {
148
149 font-weight: bold;
150
151 margin: 0;
152
153 margin: 2vw auto auto;
154
155 }
156
157
158
159 .grid--content__item-caption span {
160
161 font-weight: bold;
162
163 }
164
165
166
167 @media screen and (max-width: 53em) {
168
169
170
171 .grid--content {
172
173 grid-template-columns: repeat(1,1fr);
174
175 margin: 0vh auto 20vh;
176
177 }
178
179
180
181 .grid--content__item {
182
183 grid-column: auto;
184
185 grid-row: auto;
186
187 margin: 15vw;
188
189 }
190
191
192
193 .grid--content__item-caption h3 {
194
195 display: none;
196
197 }
198
199
200
201 }
202
203
204
205 /*----------------------------
206
207 .-- Grid Defination
208
209 -----------------------------*/
210
211
212
213
214
215 .grid--1-style--1{
216
217 grid-row: 1;
218
219 grid-column: 1 / span 4;
220
221 }
222
223
224
225 .grid--1-style--2{
226
227 grid-row: 2;
228
229 grid-column: 5 / span 3;
230
231 }
232
233
234
235 .grid--1-style--3{
236
237 grid-row: 3;
238
239 grid-column: 3 / span 2;
240
241 }
242
243
244
245 .grid--1-style--4{
246
247 grid-row: 4;
248
249 grid-column: 1 / span 2;
250
251 }
252
253
254
255 .grid--1-style--5{
256
257 grid-row: 5;
258
259 grid-column: 3 / span 5;
260
261 }
262
263
264
265 .grid--1-style--6{
266
267 grid-row: 6;
268
269 grid-column: 1 / span 2;
270
271 }
272
273
274
275 .grid--1-style--7{
276
277 grid-row: 7;
278
279 grid-column: 3 / span 3;
280
281 }
282
283
284
285 .grid--1-style--8{
286
287 grid-row: 8;
288
289 grid-column: 6 / span 2;
290
291 }
292
293
294
295 .grid--1-style--9{
296
297 grid-row: 9;
298
299 grid-column: 1 / span 5;
300
301 }
302
303
304
305 .grid--1-style--10{
306
307 grid-row: 10;
308
309 grid-column: 6 / span 3;
310
311 }
312
313
314
315 .grid--1-style--11{
316
317 grid-row: 11;
318
319 grid-column: 4 / span 2;
320
321 }
322
323
324
325 .grid--1-style--12{
326
327 grid-row: 12;
328
329 grid-column: 1 / span 3;
330
331 }
332
333
334
335 .grid--1-style--13{
336
337 grid-row: 13;
338
339 grid-column: 4 / span 5;
340
341 }
342
343
344
345 .grid--2-style--1{
346
347 grid-row: 1;
348
349 grid-column: 4 / span 3;
350
351 }
352
353
354
355 .grid--2-style--2{
356
357 grid-row: 2;
358
359 grid-column: 1 / span 3;
360
361 }
362
363
364
365 .grid--2-style--3{
366
367 grid-row: 3;
368
369 grid-column: 4 / span 4;
370
371 }
372
373
374
375 .grid--2-style--4{
376
377 grid-row: 4;
378
379 grid-column: 2 / span 2;
380
381 }
382
383
384
385 .grid--2-style--5{
386
387 grid-row: 5;
388
389 grid-column: 4 / span 3;
390
391 }
392
393
394
395 .grid--2-style--6{
396
397 grid-row: 6;
398
399 grid-column: 2 / span 2;
400
401 }
402
403
404
405 .grid--2-style--7{
406
407 grid-row: 7;
408
409 grid-column: 4 / span 3;
410
411 }
412
413
414
415 .grid--2-style--8{
416
417 grid-row: 8;
418
419 grid-column: 2 / span 2;
420
421 }
422
423
424
425 .grid--2-style--9{
426
427 grid-row: 9;
428
429 grid-column: 4 / span 4;
430
431 }
432
433
434
435 .grid--2-style--10{
436
437 grid-row: 10;
438
439 grid-column: 8 / span 1;
440
441 }
442
443
444
445 .grid--2-style--11{
446
447 grid-row: 11;
448
449 grid-column: 3 / span 5;
450
451 }
452
453
454
455 .grid--2-style--12{
456
457 grid-row: 12;
458
459 grid-column: 1 / span 2;
460
461 }
462
463
464
465 .grid--2-style--13{
466
467 grid-row: 13;
468
469 grid-column: 3 / span 5;
470
471 }
472
473
474
475 .grid--3-style--1{
476
477 grid-row: 1;
478
479 grid-column: 5 / span 4;
480
481 }
482
483
484
485 .grid--3-style--2{
486
487 grid-row: 2;
488
489 grid-column: 1 / span 4;
490
491 }
492
493
494
495 .grid--3-style--3{
496
497 grid-row: 3;
498
499 grid-column: 5 / span 4;
500
501 }
502
503
504
505 .grid--3-style--4{
506
507 grid-row: 4;
508
509 grid-column: 1 / span 4;
510
511 }
512
513
514
515 .grid--3-style--5{
516
517 grid-row: 5;
518
519 grid-column: 5 / span 4;
520
521 }
522
523
524
525 .grid--3-style--6{
526
527 grid-row: 6;
528
529 grid-column: 1 / span 4;
530
531 }
532
533
534
535 .grid--3-style--7{
536
537 grid-row: 7;
538
539 grid-column: 5 / span 4;
540
541 }
542
543
544
545 .grid--3-style--8{
546
547 grid-row: 8;
548
549 grid-column: 1 / span 4;
550
551 }
552
553
554
555 .grid--3-style--9{
556
557 grid-row: 9;
558
559 grid-column: 5 / span 4;
560
561 }
562
563
564
565 .grid--3-style--10{
566
567 grid-row: 10;
568
569 grid-column: 1 / span 4;
570
571 }
572
573
574
575 .grid--3-style--11{
576
577 grid-row: 11;
578
579 grid-column: 5 / span 4;
580
581 }
582
583
584
585 .grid--3-style--12{
586
587 grid-row: 12;
588
589 grid-column: 1 / span 4;
590
591 }
592
593
594
595 .grid--3-style--13{
596
597 grid-row: 13;
598
599 grid-column: 5 / span 4;
600
601 }
602
603
604
605 .grid--4-style--1{
606
607 grid-row: 1;
608
609 grid-column: 3 / span 2;
610
611 }
612
613
614
615 .grid--4-style--2{
616
617 grid-row: 2;
618
619 grid-column: 5 / span 2;
620
621 }
622
623
624
625 .grid--4-style--3{
626
627 grid-row: 3;
628
629 grid-column: 7 / span 2;
630
631 }
632
633
634
635 .grid--4-style--4{
636
637 grid-row: 4;
638
639 grid-column: 5 / span 2;
640
641 }
642
643
644
645 .grid--4-style--5{
646
647 grid-row: 5;
648
649 grid-column: 3 / span 2;
650
651 }
652
653
654
655 .grid--4-style--6{
656
657 grid-row: 6;
658
659 grid-column: 1 / span 2;
660
661 }
662
663
664
665 .grid--4-style--7{
666
667 grid-row: 7;
668
669 grid-column: 3 / span 2;
670
671 }
672
673
674
675 .grid--4-style--8{
676
677 grid-row: 8;
678
679 grid-column: 5 / span 2;
680
681 }
682
683
684
685 .grid--4-style--9{
686
687 grid-row: 9;
688
689 grid-column: 7 / span 2;
690
691 }
692
693
694
695 .grid--4-style--10{
696
697 grid-row: 10;
698
699 grid-column: 5 / span 2;
700
701 }
702
703
704
705 .grid--4-style--11{
706
707 grid-row: 11;
708
709 grid-column: 3 / span 2;
710
711 }
712
713
714
715 .grid--4-style--12{
716
717 grid-row: 12;
718
719 grid-column: 1 / span 2;
720
721 }
722
723
724
725 .grid--4-style--13{
726
727 grid-row: 13;
728
729 grid-column: 3 / span 2;
730
731 }
732
733