Browse code

Update

Benjamin Roth authored on24/03/2023 16:12:06
Showing1 changed files
... ...
@@ -163,8 +163,14 @@
163 163
     }
164 164
 
165 165
     &.variant-v2 {
166
+      .ce--headline {
167
+        h1 {
168
+          text-transform: none;
169
+        }
170
+      }
166 171
       .price {
167 172
         margin: 3rem 0 1rem 0;
173
+        //font-weight: var(--bs-headline-font-weight);
168 174
 
169 175
         span {
170 176
           display: inline-block;
... ...
@@ -177,23 +183,39 @@
177 183
     text-align: right;
178 184
     margin-top: 1rem;
179 185
   }
180
-}
181 186
 
182
-.image--col {
183
-  .product--main-image {
184
-    @include media-breakpoint-down(lg) {
185
-      max-height: 66vh;
186
-      display: flex;
187
-      justify-content: center;
187
+  .image--col {
188
+    .product--main-image {
189
+      @include media-breakpoint-down(lg) {
190
+        max-height: 66vh;
191
+        display: flex;
192
+        justify-content: center;
193
+
194
+        .image_container {
195
+          text-align: center;
196
+        }
188 197
 
189
-      .image_container {
190
-        text-align: center;
198
+        img {
199
+          height: 100%;
200
+          width: auto;
201
+          max-height: 100%;
202
+        }
191 203
       }
204
+    }
205
+  }
192 206
 
193
-      img {
194
-        height: 100%;
195
-        width: auto;
196
-        max-height: 100%;
207
+  .attributes {
208
+    li {
209
+      min-height: 1.5em;
210
+      padding-left: 135px;
211
+      position: relative;
212
+      strong {
213
+        position: absolute;
214
+        inset: 0;
215
+        width: 130px;
216
+        &:after {
217
+          content: ':';
218
+        }
197 219
       }
198 220
     }
199 221
   }
Browse code

Update remote

Benjamin Roth authored on24/03/2023 11:24:53
Showing1 changed files
... ...
@@ -179,6 +179,26 @@
179 179
   }
180 180
 }
181 181
 
182
+.image--col {
183
+  .product--main-image {
184
+    @include media-breakpoint-down(lg) {
185
+      max-height: 66vh;
186
+      display: flex;
187
+      justify-content: center;
188
+
189
+      .image_container {
190
+        text-align: center;
191
+      }
192
+
193
+      img {
194
+        height: 100%;
195
+        width: auto;
196
+        max-height: 100%;
197
+      }
198
+    }
199
+  }
200
+}
201
+
182 202
 
183 203
 .mod_iso_productreader {
184 204
   margin-bottom: 3rem;
Browse code

Initial commit

Benjamin Roth authored on16/03/2023 20:22:35
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,198 @@
1
+.mod_iso_productreader {
2
+  margin-top: 0px;
3
+  margin-bottom: 0px;
4
+
5
+  .iso--product-reader {
6
+    &.variant-v1 {
7
+      background-color: var(--bs-white);
8
+      padding: 1.5rem 0;
9
+
10
+      .image--col {
11
+        .image-col--inner {
12
+          padding-left: 1rem;
13
+          text-align: center;
14
+
15
+          .product--main-image {
16
+          }
17
+
18
+          .product--thumbnails {
19
+            figure {
20
+              display: inline-block;
21
+              margin-bottom: 0px;
22
+            }
23
+          }
24
+        }
25
+      }
26
+
27
+      .content--col {
28
+        .content-col--inner {
29
+          padding-top: 2rem;
30
+          padding-left: rfs-value(25px);
31
+          padding-right: rfs-value(25px);
32
+
33
+          @include media-breakpoint-up(xl) {
34
+            padding-top: 0rem;
35
+            padding-left: 0px;
36
+            padding-right: rfs-value(50px);
37
+          }
38
+
39
+          @include media-breakpoint-up(xxl) {
40
+            padding-right: rfs-value(75px);
41
+          }
42
+
43
+          .content--section {
44
+            padding: 2rem 3rem;
45
+            background-color: var(--bs-gray-200);
46
+
47
+            &:not(:last-child) {
48
+              margin-bottom: 1rem;
49
+            }
50
+
51
+            &.content--section-1 {
52
+              text-align: center;
53
+
54
+              h1 {
55
+                @include font-size(32px);
56
+                font-weight: $font-weight-semibold;
57
+                color: var(--bs-body-color);
58
+                line-height: 1.35;
59
+              }
60
+
61
+              .price {
62
+                margin-top: 1.5rem;
63
+                margin-bottom: 0.75rem;
64
+                line-height: 1;
65
+                color: var(--bs-primary);
66
+                @include font-size(44px);
67
+                font-weight: $font-weight-semibold;
68
+              }
69
+
70
+              .item--short-informations {
71
+                @include font-size(12px);
72
+
73
+                > span {
74
+                  display: inline-block;
75
+                  vertical-align: top;
76
+
77
+                  &:first-child {
78
+                    margin-right: 3px;
79
+                    vertical-align: middle;
80
+                  }
81
+
82
+                  &:last-child {
83
+                    vertical-align: middle;
84
+                    margin-left: 3px;
85
+                  }
86
+                }
87
+              }
88
+
89
+              .tax-note {
90
+                @include font-size(12px);
91
+
92
+                a {
93
+                  text-decoration: none;
94
+                }
95
+              }
96
+
97
+              .options {
98
+                margin-top: 1.5rem;
99
+
100
+                select {
101
+                  line-height: rfs-value(25px);
102
+                  min-height: rfs-value(25px);
103
+                }
104
+
105
+                input {
106
+                  @extend .form-control;
107
+                }
108
+
109
+                .widget {
110
+                  text-align: left;
111
+
112
+                  &:not(:last-child) {
113
+                    margin-bottom: 1rem;
114
+                  }
115
+                }
116
+              }
117
+
118
+              .submit_container {
119
+                margin-top: 3rem;
120
+
121
+                .quantity_container {
122
+                  input.form-control {
123
+                    width: rfs-value(50px);
124
+                    text-align: center;
125
+                    color: var(--bs-primary);
126
+                    background-color: transparent;
127
+                    border: 1px solid var(--bs-primary);
128
+                  }
129
+
130
+                  label {
131
+                    @include font-size(10px);
132
+                    display: block;
133
+                    color: var(--bs-primary);
134
+                    margin-top: rfs-value(2px);
135
+                  }
136
+                }
137
+
138
+                .actions_container {
139
+                  padding-left: rfs-value(8px);
140
+                  flex: 1;
141
+
142
+                  input.submit {
143
+                    //@extend .btn, .btn-primary;
144
+
145
+                    display: block;
146
+                    width: 100%;
147
+                  }
148
+                }
149
+              }
150
+            }
151
+
152
+            &.content--section-2 {
153
+            }
154
+
155
+            &.content--section-3 {
156
+            }
157
+
158
+            &.content--section-4 {
159
+            }
160
+          }
161
+        }
162
+      }
163
+    }
164
+
165
+    &.variant-v2 {
166
+      .price {
167
+        margin: 3rem 0 1rem 0;
168
+
169
+        span {
170
+          display: inline-block;
171
+        }
172
+      }
173
+    }
174
+  }
175
+
176
+  p.back {
177
+    text-align: right;
178
+    margin-top: 1rem;
179
+  }
180
+}
181
+
182
+
183
+.mod_iso_productreader {
184
+  margin-bottom: 3rem;
185
+ &  + .mod_article {
186
+  display: flex;
187
+  flex-flow: column nowrap;
188
+  flex-direction: column-reverse;
189
+
190
+  & + .mod_pageimage{
191
+    display: none;
192
+
193
+    & + #productRecommendations{
194
+      margin-top: 3rem;
195
+    }
196
+  }
197
+}
198
+}
0 199
\ No newline at end of file