Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,72 @@
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 "../../../_fonts/fontawesome/scss/fontawesome";
8
+@import "../../../_fonts/fontawesome/scss/solid";
9
+
10
+@import "../../scss-variables";
11
+@import "../../_theme/variables-layout";
12
+
13
+html body {
14
+  .ce_rsce_quotebox {
15
+    .quote--element {
16
+      text-align: center;
17
+
18
+
19
+      .quote--image {
20
+        margin-bottom: 1.5rem;
21
+        //height: rfs-value(100px);
22
+        display: flex;
23
+        flex-flow: column wrap;
24
+        justify-content: center;
25
+
26
+        img {
27
+          //max-height: rfs-value(100px);
28
+          //max-width: rfs-value(285px);
29
+        }
30
+      }
31
+
32
+      .quote--detail {
33
+        display: inline-block;
34
+
35
+        .quote--text {
36
+          display: inline-block;
37
+          position: relative;
38
+          padding: 0rem 2.25rem;
39
+          font-size: 2rem;
40
+
41
+
42
+          &::before {
43
+            left: 0;
44
+            top: 0;
45
+            content: fa-content($fa-var-quote-left);
46
+          }
47
+
48
+          &::after {
49
+            bottom: 0;
50
+            right: 0;
51
+            content: fa-content($fa-var-quote-right);
52
+          }
53
+
54
+          &:before, &:after {
55
+            @include font-size(24px);
56
+            position: absolute;
57
+
58
+            @extend .fas;
59
+          }
60
+        }
61
+
62
+        .quote--name {
63
+          padding: 0 2.25rem;
64
+          display: block;
65
+          margin-top: .75rem;
66
+          @include font-size(14px);
67
+          text-align: right;
68
+        }
69
+      }
70
+    }
71
+  }
72
+}
0 73
\ No newline at end of file