Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,68 @@
1
+@import "../../mixins";
2
+
3
+@import "../../variables-layout";
4
+
5
+@import "../../../_vendor/node_modules/bootstrap/scss/functions";
6
+@import "../../../_vendor/node_modules/bootstrap/scss/variables";
7
+@import "../../../_vendor/node_modules/bootstrap/scss/mixins";
8
+
9
+@import "../../scaffolding/helper-classes";
10
+
11
+@import "../../scss-variables";
12
+@import "../../_theme/variables-layout";
13
+
14
+html body {
15
+  .ce_rsce_headline {
16
+    margin-bottom: rfs-fluid-value(4rem);
17
+    margin-top: rfs-fluid-value(4rem);
18
+
19
+    .ce--main-image {
20
+      .image--holder {
21
+        height: 50vh;
22
+        background-size: cover !important;
23
+        background-position: center center;
24
+        position: relative;
25
+        box-shadow: inset 0px 25px 40px rgba(0, 0, 0, 0.5);
26
+
27
+        &:not(.hide-gradient) {
28
+          &:after {
29
+            content: "";
30
+            height: rfs-fluid-value(200px);
31
+            width: 100%;
32
+            position: absolute;
33
+            bottom: 0;
34
+            left: 0;
35
+            z-index: 5;
36
+            background: linear-gradient(
37
+                            rgba(var(--bs-white-rgb), 0) 0%,
38
+                            #fff 100%
39
+            );
40
+          }
41
+        }
42
+      }
43
+
44
+      & + .container {
45
+        margin-top: 1.5rem;
46
+      }
47
+
48
+      & + .box--holder {
49
+        @include content-box();
50
+        @extend .bg-gradient;
51
+      }
52
+    }
53
+
54
+    .box--holder {
55
+      position: relative;
56
+      z-index: 5;
57
+      margin: 0 auto;
58
+
59
+      &.content--box {
60
+        margin-top: -4rem;
61
+
62
+        @include media-breakpoint-up(lg) {
63
+          max-width: 75%;
64
+        }
65
+      }
66
+    }
67
+  }
68
+}
0 69
\ No newline at end of file