Browse code

Initial commit

Benjamin Roth authored on16/03/2023 20:22:35
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,55 @@
1
+.mod_catalogMasterView {
2
+  .content--element {
3
+    margin-bottom: $basic-gutter;
4
+
5
+    &.benefits {
6
+      .benefit--box {
7
+        text-align: center;
8
+
9
+        .benefit--title {
10
+          text-transform: uppercase;
11
+          font-weight: $font-weight-bold;
12
+          margin-bottom: 0px;
13
+        }
14
+      }
15
+    }
16
+
17
+    &.testimonials--top {
18
+      .testimonial-person--box {
19
+        background-color: var(--bs-primary);
20
+        padding: 2rem;
21
+
22
+        @include media-breakpoint-up(lg) {
23
+          min-height: 100%;
24
+        }
25
+      }
26
+    }
27
+
28
+    &.contact--persons {
29
+      figure {
30
+        margin-bottom: 0px;
31
+
32
+        img {
33
+          border-radius: 50%;
34
+        }
35
+      }
36
+
37
+      a {
38
+        text-decoration: none;
39
+
40
+        i {
41
+          margin-right: .25rem;
42
+        }
43
+      }
44
+
45
+      .contact-person--name {
46
+        font-weight: $font-weight-bold;
47
+      }
48
+
49
+      .contact-person--description {
50
+        margin-top: 1rem;
51
+        margin-bottom: 1rem;
52
+      }
53
+    }
54
+  }
55
+}