Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,149 @@
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
+
12
+  .form--image-select {
13
+    margin-bottom: 5rem;
14
+
15
+    &:not(.widget) {
16
+      margin-top: rfs-value(75px);
17
+
18
+      .ce--headline {
19
+        border-bottom: 1px solid var(--bs-gray-400);
20
+      }
21
+    }
22
+
23
+    .ce--headline {
24
+      //font-size: 3rem;
25
+      //margin-bottom: 3.5rem;
26
+
27
+      h1,
28
+      .h1,
29
+      h2,
30
+      .h2 {
31
+        font-size: 2.25rem;
32
+      }
33
+
34
+      h3,
35
+      .h3 {
36
+        color: var(--bs-body-color);
37
+        border: 0px;
38
+        margin-bottom: 2rem;
39
+        margin-top: 4rem;
40
+        font-size: 2rem;
41
+        font-weight: $font-weight-bold;
42
+        text-align: center;
43
+      }
44
+
45
+      .ce--subline {
46
+        font-size: 1.25rem;
47
+      }
48
+    }
49
+
50
+    .image-select--item {
51
+      min-height: 100%;
52
+      display: flex;
53
+      flex-flow: column wrap;
54
+      cursor: pointer;
55
+      position: relative;
56
+      transition: all 0.3s ease;
57
+      margin-bottom: 2rem;
58
+      padding-bottom: 2.5rem;
59
+
60
+      .item--headline {
61
+        text-align: center;
62
+
63
+        h3 {
64
+          position: relative;
65
+          padding-bottom: 1rem;
66
+          color: var(--bs-body-color);
67
+          @include font-size(28px);
68
+          font-weight: $font-weight-bold;
69
+          margin-bottom: 1rem;
70
+
71
+          &:after {
72
+            content: "";
73
+            height: 5px;
74
+            width: 90px;
75
+            left: 50%;
76
+            margin-left: -45px;
77
+            display: inline-block;
78
+            position: absolute;
79
+            bottom: 0;
80
+            background-color: var(--bs-primary);
81
+          }
82
+        }
83
+      }
84
+
85
+      .item--text-top {
86
+        display: -webkit-box;
87
+        -webkit-line-clamp: 2;
88
+        -webkit-box-orient: vertical;
89
+        overflow: hidden;
90
+      }
91
+
92
+      .item--image {
93
+        margin: 1.5rem 0;
94
+      }
95
+
96
+      .item--text-bottom {
97
+        display: -webkit-box;
98
+        -webkit-line-clamp: 3;
99
+        -webkit-box-orient: vertical;
100
+        overflow: hidden;
101
+        padding-bottom: 1rem;
102
+      }
103
+
104
+      .item--input {
105
+        display: flex;
106
+        align-items: flex-end;
107
+        justify-content: center;
108
+
109
+        .form-check {
110
+          font-size: 1.5rem;
111
+          font-weight: $font-weight-bold;
112
+        }
113
+      }
114
+
115
+      .item--preview-links {
116
+        margin-top: 0.5rem;
117
+        text-align: center;
118
+        @include font-size(14px);
119
+      }
120
+
121
+      ul {
122
+        list-style-type: none;
123
+        padding: 0px;
124
+        margin: 0px;
125
+
126
+        li {
127
+          a {
128
+            text-decoration: none;
129
+            font-weight: $font-weight-bold;
130
+            display: block;
131
+          }
132
+        }
133
+      }
134
+    }
135
+
136
+    .col-right {
137
+      @include media-breakpoint-up(xl) {
138
+        padding-left: 5rem;
139
+        max-width: rfs-value(550px);
140
+        margin: 0 0 0 auto;
141
+      }
142
+
143
+      h3 {
144
+        font-weight: $font-weight-bold;
145
+      }
146
+    }
147
+  }
148
+
149
+}
0 150
\ No newline at end of file