... | ... |
@@ -3,6 +3,22 @@ |
3 | 3 |
} |
4 | 4 |
|
5 | 5 |
.iso--product-box { |
6 |
+ |
|
7 |
+ padding-bottom: 60px; |
|
8 |
+ height: 100%; |
|
9 |
+ |
|
10 |
+ .button_container { |
|
11 |
+ position: absolute; |
|
12 |
+ bottom: 0; |
|
13 |
+ left: 0; |
|
14 |
+ right: 0; |
|
15 |
+ } |
|
16 |
+ |
|
17 |
+ .image_container { |
|
18 |
+ height:400px; |
|
19 |
+ @include aspect-ratio(1,1); |
|
20 |
+ } |
|
21 |
+ |
|
6 | 22 |
&.variant-v1 { |
7 | 23 |
background-color: var(--bs-white); |
8 | 24 |
height: 100%; |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,128 @@ |
1 |
+.product { |
|
2 |
+ //margin-bottom: 1rem; |
|
3 |
+} |
|
4 |
+ |
|
5 |
+.iso--product-box { |
|
6 |
+ &.variant-v1 { |
|
7 |
+ background-color: var(--bs-white); |
|
8 |
+ height: 100%; |
|
9 |
+ transition: all 0.3s ease; |
|
10 |
+ |
|
11 |
+ &:hover { |
|
12 |
+ transform: scale(1.01); |
|
13 |
+ box-shadow: $box-shadow; |
|
14 |
+ } |
|
15 |
+ |
|
16 |
+ form { |
|
17 |
+ height: 100%; |
|
18 |
+ |
|
19 |
+ .formbody { |
|
20 |
+ height: 100%; |
|
21 |
+ //display: flex; |
|
22 |
+ //flex-flow: column wrap; |
|
23 |
+ |
|
24 |
+ .image_container { |
|
25 |
+ padding: 1rem 1rem 2rem 1rem; |
|
26 |
+ margin: 0px; |
|
27 |
+ } |
|
28 |
+ |
|
29 |
+ .content_container { |
|
30 |
+ border-top: calc(#{$grid-gutter-width} / 4) solid var(--bs-gray-200); |
|
31 |
+ padding: 1rem 1rem 2rem 1rem; |
|
32 |
+ display: flex; |
|
33 |
+ flex-flow: column wrap; |
|
34 |
+ flex: 1; |
|
35 |
+ |
|
36 |
+ h3 { |
|
37 |
+ margin-bottom: 0px; |
|
38 |
+ |
|
39 |
+ a { |
|
40 |
+ text-decoration: none; |
|
41 |
+ @include font-size(18px); |
|
42 |
+ color: var(--bs-body-color); |
|
43 |
+ } |
|
44 |
+ } |
|
45 |
+ |
|
46 |
+ .offer { |
|
47 |
+ flex: 1; |
|
48 |
+ display: flex; |
|
49 |
+ flex-flow: column wrap; |
|
50 |
+ justify-content: flex-end; |
|
51 |
+ |
|
52 |
+ .price { |
|
53 |
+ margin-top: 1.25rem; |
|
54 |
+ line-height: 1; |
|
55 |
+ color: var(--bs-primary); |
|
56 |
+ @include font-size(30px); |
|
57 |
+ font-weight: $font-weight-semibold; |
|
58 |
+ } |
|
59 |
+ |
|
60 |
+ .tax-note { |
|
61 |
+ @include font-size(10px); |
|
62 |
+ margin-top: 5px; |
|
63 |
+ } |
|
64 |
+ } |
|
65 |
+ |
|
66 |
+ .details { |
|
67 |
+ margin-top: 1.5rem; |
|
68 |
+ } |
|
69 |
+ } |
|
70 |
+ |
|
71 |
+ .submit_container { |
|
72 |
+ margin-top: 0.5rem; |
|
73 |
+ |
|
74 |
+ .submit { |
|
75 |
+ //@extend .btn, .btn-primary; |
|
76 |
+ //@extend .btn-lg; |
|
77 |
+ } |
|
78 |
+ } |
|
79 |
+ } |
|
80 |
+ } |
|
81 |
+ } |
|
82 |
+ |
|
83 |
+ &.variant-v2 { |
|
84 |
+ text-align: center; |
|
85 |
+ font-size: .85rem; |
|
86 |
+ |
|
87 |
+ a { |
|
88 |
+ text-decoration: none; |
|
89 |
+ } |
|
90 |
+ |
|
91 |
+ h3 { |
|
92 |
+ margin-bottom: .5rem; |
|
93 |
+ min-height: rfs-value(60px); |
|
94 |
+ } |
|
95 |
+ |
|
96 |
+ .price { |
|
97 |
+ margin: 1rem 0; |
|
98 |
+ |
|
99 |
+ span { |
|
100 |
+ display: inline-block; |
|
101 |
+ } |
|
102 |
+ } |
|
103 |
+ |
|
104 |
+ .baseprice { |
|
105 |
+ margin-bottom: 5px; |
|
106 |
+ } |
|
107 |
+ |
|
108 |
+ .button_container { |
|
109 |
+ margin-top: 1.25rem; |
|
110 |
+ |
|
111 |
+ button + button { |
|
112 |
+ margin-left: 1rem; |
|
113 |
+ } |
|
114 |
+ } |
|
115 |
+ } |
|
116 |
+ |
|
117 |
+ &.variant-slider { |
|
118 |
+ h3 { |
|
119 |
+ text-align: center; |
|
120 |
+ |
|
121 |
+ a { |
|
122 |
+ text-decoration: none; |
|
123 |
+ @include font-size(18px); |
|
124 |
+ color: var(--bs-body-color); |
|
125 |
+ } |
|
126 |
+ } |
|
127 |
+ } |
|
128 |
+} |