Browse code

Update remote

Benjamin Roth authored on29/03/2023 11:42:08
Showing1 changed files
... ...
@@ -110,7 +110,7 @@
110 110
     }
111 111
 
112 112
     .price {
113
-      margin: 1rem 0;
113
+      margin: 0.5rem 0 0.25rem;
114 114
 
115 115
       span {
116 116
         display: inline-block;
Browse code

Update

Benjamin Roth authored on21/03/2023 09:34:21
Showing1 changed files
... ...
@@ -15,7 +15,7 @@
15 15
   }
16 16
 
17 17
   .image_container {
18
-    height:400px;
18
+    //height:400px;
19 19
     @include aspect-ratio(1,1);
20 20
   }
21 21
 
Browse code

Update remote

Benjamin Roth authored on20/03/2023 16:17:59
Showing1 changed files
... ...
@@ -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%;
Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
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
+}