Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,138 @@
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_sitemap {
12
+    margin-right: -1px;
13
+    margin-bottom: -1px;
14
+    margin-top: -1px;
15
+
16
+    .ce--sitemap {
17
+
18
+
19
+      .row > div:not(:last-child) {
20
+        .sitemap-column {
21
+          //border-bottom: 1px solid $body-bg;
22
+        }
23
+      }
24
+
25
+      .sitemap-column {
26
+        border-bottom: 1px solid $body-bg;
27
+        min-height: 100%;
28
+        padding-top: 1rem;
29
+        //padding-bottom: 1.5rem;
30
+        text-align: left;
31
+        border-right: 1px solid $body-bg;
32
+
33
+        //margin-top: -1px;
34
+
35
+        a,
36
+        span {
37
+          text-decoration: none;
38
+          display: block;
39
+          line-height: var(--bs-body-line-height);
40
+          white-space: normal;
41
+        }
42
+
43
+        a {
44
+          &:hover,
45
+          &.active {
46
+            text-decoration: underline;
47
+          }
48
+        }
49
+
50
+        .mm_level_1 {
51
+          color: $megamenu-lvl1-color;
52
+          @include font-size(20px);
53
+
54
+          > a,
55
+          > span {
56
+            color: $megamenu-lvl1-color;
57
+
58
+            &:hover {
59
+              span.sitemap--image-container {
60
+                img {
61
+                  transform: scale(1.15);
62
+                }
63
+              }
64
+            }
65
+
66
+            > span {
67
+              &:first-child {
68
+                padding-left: 1.25rem;
69
+                padding-right: 1.25rem;
70
+                display: flex;
71
+                flex-flow: column wrap;
72
+                justify-content: flex-end;
73
+                min-height: rfs-value(54px);
74
+                padding-bottom: .5rem;
75
+              }
76
+
77
+              &.sitemap--image-container {
78
+                height: $megamenu-imageHeight;
79
+                position: relative;
80
+                overflow: hidden;
81
+                margin: 0.75rem 0px 0rem 0px;
82
+
83
+                img {
84
+                  position: absolute;
85
+                  left: 0;
86
+                  top: 0;
87
+                  transition: all 0.3s ease;
88
+                }
89
+              }
90
+            }
91
+          }
92
+        }
93
+
94
+        .mm_level_2 {
95
+          @include font-size(18px);
96
+          color: $megamenu-lvl2-color;
97
+          margin-top: 1.25rem;
98
+          padding-bottom: 1.5rem;
99
+
100
+          > div {
101
+            padding-left: 1.25rem;
102
+            padding-right: 1.25rem;
103
+
104
+
105
+            &:not(:first-child) {
106
+              padding-top: 1.25rem;
107
+              margin-top: 1.25rem;
108
+              border-top: 1px solid $body-bg;
109
+            }
110
+
111
+            a {
112
+              color: $megamenu-lvl2-color;
113
+
114
+              > span {
115
+              }
116
+            }
117
+          }
118
+        }
119
+
120
+        .mm_level_3 {
121
+          @include font-size(16px);
122
+          color: $megamenu-lvl3-color;
123
+
124
+          > div {
125
+            margin-top: 0.35rem;
126
+
127
+            a {
128
+              color: $megamenu-lvl3-color;
129
+
130
+              > span {
131
+              }
132
+            }
133
+          }
134
+        }
135
+      }
136
+    }
137
+  }
138
+}
0 139
\ No newline at end of file