Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,92 @@
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_boxenfeld {
12
+
13
+    @include media-breakpoint-down(lg) {
14
+      padding-left: 1rem;
15
+      padding-right: 1rem;
16
+    }
17
+
18
+    .boxes--outer {
19
+
20
+
21
+      &:not(:last-child) {
22
+        margin-bottom: $basic-gutter;
23
+      }
24
+
25
+      > .row {
26
+        .half-container {
27
+          margin-right: auto;
28
+        }
29
+
30
+        .box--image {
31
+          @include media-breakpoint-up(lg) {
32
+            border-radius: 0 var(--bs-border-radius-xl) var(--bs-border-radius-xl) 0;
33
+          }
34
+        }
35
+
36
+        &.flex-row-reverse {
37
+          .half-container {
38
+            margin-left: auto;
39
+            margin-right: 0;
40
+          }
41
+
42
+          .box--image {
43
+            @include media-breakpoint-up(lg) {
44
+              border-radius: var(--bs-border-radius-xl) 0 0 var(--bs-border-radius-xl);
45
+            }
46
+          }
47
+        }
48
+      }
49
+
50
+      .row.flex-row-reverse {
51
+        @include media-breakpoint-up(lg) {
52
+          flex-flow: row-reverse;
53
+        }
54
+      }
55
+
56
+    }
57
+
58
+    img.box--image {
59
+      border-radius: var(--bs-border-radius-xl) var(--bs-border-radius-xl) 0px 0px;
60
+    }
61
+
62
+    .half-container {
63
+      @include media-breakpoint-down(lg) {
64
+        max-width: 100%;
65
+      }
66
+    }
67
+
68
+    .box--content {
69
+      border: 7px solid var(--bs-primary);
70
+      padding: 3rem;
71
+      z-index: 9;
72
+      position: relative;
73
+      border-radius: var(--bs-border-radius-xl);
74
+      @include media-breakpoint-down(lg) {
75
+        top: 0 !important;
76
+        border-radius: 0px 0px var(--bs-border-radius-xl) var(--bs-border-radius-xl);
77
+      }
78
+
79
+      @include media-breakpoint-up(xxl) {
80
+        border-radius: var(--bs-border-radius-xl);
81
+      }
82
+
83
+      .box--headline:first-child > * {
84
+        margin-top: 0px;
85
+      }
86
+
87
+      .box--button {
88
+        margin-top: 1.5rem;
89
+      }
90
+    }
91
+  }
92
+}
0 93
\ No newline at end of file