Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,73 @@
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_row1start {
12
+    .row.with-mid-content {
13
+      position: relative;
14
+
15
+      @include media-breakpoint-up(lg) {
16
+        &:after {
17
+          content: "";
18
+          width: 10px;
19
+          height: 200%;
20
+          position: absolute;
21
+          top: 50%;
22
+          right: 50%;
23
+          transform: translate(50%, -50%);
24
+          background-color: $body-bg;
25
+          z-index: 1;
26
+        }
27
+      }
28
+
29
+      @include media-breakpoint-up(lg) {
30
+        > div:not(.row-mid-content) {
31
+          &:last-of-type {
32
+            padding-left: rfs-value(200px);
33
+          }
34
+        }
35
+      }
36
+
37
+      .row-mid-content {
38
+        @include media-breakpoint-up(lg) {
39
+          position: absolute;
40
+          top: 50%;
41
+          right: 50%;
42
+          transform: translate(50%, -50%);
43
+          max-width: rfs-value(225px);
44
+        }
45
+
46
+        padding: 3rem 2.5rem;
47
+        text-align: center;
48
+        border-radius: 80%;
49
+        z-index: 5;
50
+        display: flex;
51
+        flex-flow: column wrap;
52
+        justify-content: center;
53
+
54
+        @include media-breakpoint-up(lg) {
55
+          background-color: $body-bg;
56
+        }
57
+
58
+        @include media-breakpoint-up(lg) {
59
+          & + div {
60
+            padding-right: rfs-value(200px);
61
+          }
62
+        }
63
+
64
+        h1,
65
+        h2,
66
+        h3,
67
+        h4 {
68
+          margin-bottom: 0.75rem;
69
+        }
70
+      }
71
+    }
72
+  }
73
+}
0 74
\ No newline at end of file