Browse code

Update

Benjamin Roth authored on21/03/2023 09:34:21
Showing1 changed files
... ...
@@ -73,13 +73,13 @@ html body {
73 73
 
74 74
 
75 75
           .box--headline {
76
-            font-family: var(--bs-font-tertiary);
76
+            //font-family: var(--bs-font-tertiary);
77 77
             @include font-size(22px);
78 78
           }
79 79
 
80 80
           .box--subline {
81 81
             margin-top: 0rem;
82
-            font-family: var(--bs-font-tertiary);
82
+            //font-family: var(--bs-font-tertiary);
83 83
           }
84 84
 
85 85
           > * + .box--text {
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_equalboxfield {
12
+    .ce--equalboxfield {
13
+
14
+      > .row {
15
+        min-height: 100%;
16
+
17
+
18
+        > div {
19
+          //margin-bottom: var(--bs-gutter-x);
20
+        }
21
+      }
22
+
23
+      .box--element {
24
+        position: relative;
25
+        min-height: 100%;
26
+        height: 100%;
27
+
28
+        a.box--link {
29
+          position: absolute;
30
+          left: 0;
31
+          top: 0;
32
+          width: 100%;
33
+          min-height: 100%;
34
+          z-index: 1;
35
+
36
+        }
37
+
38
+        > .row {
39
+          height: 100%;
40
+          transition: all .3s ease;
41
+
42
+          &:hover {
43
+            opacity: .9;
44
+          }
45
+        }
46
+
47
+        .box--image {
48
+          width: 100%;
49
+          min-height: 100%;
50
+          position: relative;
51
+
52
+          .box-image--holder {
53
+            width: 100%;
54
+            height: 100%;
55
+            min-height: rfs-value(200px);
56
+              @include media-breakpoint-up(lg) {
57
+                position: absolute;
58
+              }
59
+
60
+          }
61
+        }
62
+
63
+        .box--details {
64
+          padding: 1.5rem;
65
+          display: flex;
66
+          flex-flow: column wrap;
67
+          min-height: 100%;
68
+          line-height: var(--bs-body-line-height);
69
+
70
+          p, p * {
71
+            line-height: var(--bs-body-line-height);
72
+          }
73
+
74
+
75
+          .box--headline {
76
+            font-family: var(--bs-font-tertiary);
77
+            @include font-size(22px);
78
+          }
79
+
80
+          .box--subline {
81
+            margin-top: 0rem;
82
+            font-family: var(--bs-font-tertiary);
83
+          }
84
+
85
+          > * + .box--text {
86
+            margin-top: 1.5rem;
87
+          }
88
+
89
+          .box--footer {
90
+            margin-top: auto;
91
+            padding-top: 1.5rem;
92
+
93
+
94
+            a {
95
+              position: relative;
96
+              z-index: 2;
97
+
98
+              &:not(.btn) {
99
+                right: -1.5em;
100
+                bottom: -1.5rem;
101
+                width: rfs-value(50px);
102
+                height: rfs-value(50px);
103
+                line-height: rfs-value(55px);
104
+                text-align: center;
105
+                background-color: rgba(255, 255, 255, .8);
106
+                color: var(--bs-body-color);
107
+                display: inline-block;
108
+
109
+                i {
110
+                  @include font-size(24px);
111
+                }
112
+              }
113
+            }
114
+          }
115
+        }
116
+      }
117
+    }
118
+  }
119
+}
0 120
\ No newline at end of file