Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,119 @@
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_imageandtext {
12
+    .ce--image-text {
13
+      &.as--rows {
14
+        > .row {
15
+          --bs-gutter-y: 2rem;
16
+
17
+
18
+          > * {
19
+            .col--inner > .row {
20
+              align-items: center;
21
+
22
+              > div {
23
+                .col--inner {
24
+                  border-bottom: 2px solid var(--bs-body-color);
25
+                  @include padding-bottom(40px);
26
+                }
27
+              }
28
+            }
29
+          }
30
+        }
31
+
32
+        .image--wrapper {
33
+          padding-right: 2.5rem;
34
+        }
35
+
36
+        .headline {
37
+          margin-bottom: 0.5rem;
38
+
39
+          @include media-breakpoint-down(sm) {
40
+            margin-top: 1rem;
41
+          }
42
+
43
+          h2,
44
+          .h2 {
45
+            font-weight: $font-weight-semibold;
46
+            color: var(--bs-black);;
47
+          }
48
+        }
49
+      }
50
+
51
+      &:not(.as--rows) {
52
+        > .row {
53
+          --bs-gutter-y: 2rem;
54
+
55
+          > div:not(:last-child) {
56
+            @include media-breakpoint-up(md) {
57
+              border-right: 2px solid var(--bs-body-color);
58
+            }
59
+          }
60
+        }
61
+
62
+
63
+        .col--inner {
64
+          @include media-breakpoint-up(xl) {
65
+            @include padding-left(40px);
66
+            @include padding-right(40px);
67
+          }
68
+        }
69
+
70
+        .headline {
71
+          text-align: center;
72
+        }
73
+
74
+        .image {
75
+          .image--wrapper {
76
+            margin: 1.5rem 0rem;
77
+          }
78
+        }
79
+
80
+        .text {
81
+          text-align: center;
82
+
83
+          a {
84
+            font-style: italic;
85
+            font-weight: $font-weight-semibold;
86
+            text-decoration: none;
87
+            display: inline-block;
88
+            color: var(--bs-body-color);
89
+
90
+            &:hover {
91
+              color: var(--bs-primary);
92
+            }
93
+
94
+            &:after {
95
+              content: ">";
96
+              display: inline-block;
97
+              margin-left: 3px;
98
+            }
99
+          }
100
+        }
101
+      }
102
+    }
103
+
104
+    .image {
105
+      text-align: center;
106
+    }
107
+
108
+    .headline {
109
+      > * {
110
+        margin-bottom: 0px;
111
+
112
+        &:after,
113
+        &:before {
114
+          display: none;
115
+        }
116
+      }
117
+    }
118
+  }
119
+}
0 120
\ No newline at end of file