1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,103 @@ |
1 |
+@import "../../variables-layout"; |
|
2 |
+ |
|
3 |
+@import "../../../_vendor/node_modules/bootstrap/scss/functions"; |
|
4 |
+@import "../../../_vendor/node_modules/bootstrap/scss/variables"; |
|
5 |
+@import "../../../_vendor/node_modules/bootstrap/scss/mixins"; |
|
6 |
+ |
|
7 |
+@import "../../scss-variables"; |
|
8 |
+@import "../../_theme/variables-layout"; |
|
9 |
+ |
|
10 |
+html body { |
|
11 |
+ .ce_rsce_fullwidthgallery { |
|
12 |
+ .row > div { |
|
13 |
+ overflow: hidden; |
|
14 |
+ } |
|
15 |
+ |
|
16 |
+ .gallery-column { |
|
17 |
+ min-height: 100%; |
|
18 |
+ position: relative; |
|
19 |
+ |
|
20 |
+ .gallery-column--inner { |
|
21 |
+ height: 100%; |
|
22 |
+ min-height: rfs-value(350px); |
|
23 |
+ @include media-breakpoint-up(lg) { |
|
24 |
+ min-height: rfs-value(550px); |
|
25 |
+ } |
|
26 |
+ |
|
27 |
+ > a { |
|
28 |
+ position: absolute; |
|
29 |
+ left: 0; |
|
30 |
+ top: 0; |
|
31 |
+ width: 100%; |
|
32 |
+ height: 100%; |
|
33 |
+ z-index: 66; |
|
34 |
+ } |
|
35 |
+ |
|
36 |
+ .column--image-holder { |
|
37 |
+ position: absolute; |
|
38 |
+ left: 0; |
|
39 |
+ top: 0; |
|
40 |
+ transition: all 0.3s ease; |
|
41 |
+ height: 100%; |
|
42 |
+ width: 100%; |
|
43 |
+ background-position: center center; |
|
44 |
+ } |
|
45 |
+ |
|
46 |
+ &:hover { |
|
47 |
+ .gallery-column--hover-content { |
|
48 |
+ opacity: 1; |
|
49 |
+ } |
|
50 |
+ |
|
51 |
+ .column--image-holder { |
|
52 |
+ transform: scale(1.1); |
|
53 |
+ } |
|
54 |
+ } |
|
55 |
+ |
|
56 |
+ .hover-content--info-icon { |
|
57 |
+ position: absolute; |
|
58 |
+ right: 1rem; |
|
59 |
+ top: 1rem; |
|
60 |
+ background-color: rgba(var(--bs-white-rgb), 0.8); |
|
61 |
+ border-radius: 50%; |
|
62 |
+ border: 1px solid var(--bs-primary); |
|
63 |
+ padding: 0px; |
|
64 |
+ line-height: 2.9rem; |
|
65 |
+ text-align: center; |
|
66 |
+ width: rfs-value(50px); |
|
67 |
+ height: rfs-value(50px); |
|
68 |
+ z-index: 56; |
|
69 |
+ color: var(--bs-primary); |
|
70 |
+ font-size: 1.35rem; |
|
71 |
+ } |
|
72 |
+ |
|
73 |
+ .gallery-column--hover-content { |
|
74 |
+ height: 100%; |
|
75 |
+ width: 100%; |
|
76 |
+ padding: 3rem; |
|
77 |
+ opacity: 0; |
|
78 |
+ transition: all 0.3s ease; |
|
79 |
+ background-color: rgba(0, 0, 0, 0.5); |
|
80 |
+ display: flex; |
|
81 |
+ flex-flow: column wrap; |
|
82 |
+ justify-content: center; |
|
83 |
+ align-content: center; |
|
84 |
+ align-items: center; |
|
85 |
+ position: relative; |
|
86 |
+ z-index: 55; |
|
87 |
+ |
|
88 |
+ min-height: rfs-value(350px); |
|
89 |
+ @include media-breakpoint-up(lg) { |
|
90 |
+ min-height: rfs-value(550px); |
|
91 |
+ } |
|
92 |
+ |
|
93 |
+ @include font-size(22px); |
|
94 |
+ |
|
95 |
+ .hover-content--inner { |
|
96 |
+ max-width: 300px; |
|
97 |
+ margin: auto; |
|
98 |
+ } |
|
99 |
+ } |
|
100 |
+ } |
|
101 |
+ } |
|
102 |
+ } |
|
103 |
+} |
|
0 | 104 |
\ No newline at end of file |