1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,126 @@ |
1 |
+.navActivator { |
|
2 |
+ text-decoration: none; |
|
3 |
+ line-height: 1; |
|
4 |
+ padding: .75rem; |
|
5 |
+ @include font-size(16px); |
|
6 |
+ font-weight: $font-weight-bold; |
|
7 |
+ |
|
8 |
+ i { |
|
9 |
+ //vertical-align: middle; |
|
10 |
+ } |
|
11 |
+} |
|
12 |
+ |
|
13 |
+#mainNav { |
|
14 |
+ .level_1 > li > a { |
|
15 |
+ z-index: 500; |
|
16 |
+ } |
|
17 |
+} |
|
18 |
+ |
|
19 |
+ |
|
20 |
+// MobileNav |
|
21 |
+#mobileNav { |
|
22 |
+ //z-index: 10; |
|
23 |
+ |
|
24 |
+ &:not(.extended-nav) { |
|
25 |
+ .mm-listitem::after { |
|
26 |
+ left: 0; |
|
27 |
+ } |
|
28 |
+ |
|
29 |
+ .logo { |
|
30 |
+ display: none; |
|
31 |
+ } |
|
32 |
+ } |
|
33 |
+ |
|
34 |
+ |
|
35 |
+ &.extended-nav { |
|
36 |
+ hr { |
|
37 |
+ border-top: 2px solid var(--bs-primary); |
|
38 |
+ opacity: 1; |
|
39 |
+ } |
|
40 |
+ |
|
41 |
+ .header-icons { |
|
42 |
+ font-size: 1.5rem; |
|
43 |
+ display: flex; |
|
44 |
+ flex-flow: row wrap; |
|
45 |
+ justify-content: space-between; |
|
46 |
+ align-items: flex-end; |
|
47 |
+ |
|
48 |
+ li.social-media { |
|
49 |
+ display: none; |
|
50 |
+ } |
|
51 |
+ } |
|
52 |
+ |
|
53 |
+ .stoerer-button--list { |
|
54 |
+ ul.list-inline { |
|
55 |
+ margin-left: 0px; |
|
56 |
+ font-size: 1.5rem; |
|
57 |
+ } |
|
58 |
+ } |
|
59 |
+ } |
|
60 |
+} |
|
61 |
+ |
|
62 |
+ |
|
63 |
+// Akkordeon-Nav |
|
64 |
+ |
|
65 |
+.accordion-nav.level_1 { |
|
66 |
+ list-style-type: none; |
|
67 |
+ padding: 0px; |
|
68 |
+ margin: 0px; |
|
69 |
+ |
|
70 |
+ ul { |
|
71 |
+ list-style-type: none; |
|
72 |
+ padding: 0px; |
|
73 |
+ margin: 0px; |
|
74 |
+ } |
|
75 |
+ |
|
76 |
+ > li { |
|
77 |
+ &:not(:last-child) { |
|
78 |
+ margin-bottom: 1.25rem; |
|
79 |
+ } |
|
80 |
+ |
|
81 |
+ > div { |
|
82 |
+ display: flex; |
|
83 |
+ flex-flow: row nowrap; |
|
84 |
+ justify-content: space-between; |
|
85 |
+ align-items: center; |
|
86 |
+ text-transform: uppercase; |
|
87 |
+ font-size: 1.25rem; |
|
88 |
+ |
|
89 |
+ .nav-toggler { |
|
90 |
+ font-size: 1.25rem; |
|
91 |
+ position: relative; |
|
92 |
+ z-index: 10; |
|
93 |
+ |
|
94 |
+ i { |
|
95 |
+ cursor: pointer; |
|
96 |
+ } |
|
97 |
+ |
|
98 |
+ .is-open { |
|
99 |
+ display: none; |
|
100 |
+ } |
|
101 |
+ } |
|
102 |
+ } |
|
103 |
+ |
|
104 |
+ .level_2 { |
|
105 |
+ display: none; |
|
106 |
+ font-weight: $font-weight-bold; |
|
107 |
+ padding-top: .5rem; |
|
108 |
+ } |
|
109 |
+ |
|
110 |
+ &.trail, &.active, &.expanded { |
|
111 |
+ .nav-toggler { |
|
112 |
+ .is-open { |
|
113 |
+ display: inline-block; |
|
114 |
+ } |
|
115 |
+ |
|
116 |
+ .is-closed { |
|
117 |
+ display: none; |
|
118 |
+ } |
|
119 |
+ } |
|
120 |
+ |
|
121 |
+ .level_2 { |
|
122 |
+ display: block; |
|
123 |
+ } |
|
124 |
+ } |
|
125 |
+ } |
|
126 |
+} |
|
0 | 127 |
\ No newline at end of file |