1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,82 @@ |
1 |
+aside { |
|
2 |
+ @include media-breakpoint-up(md) { |
|
3 |
+ //margin-top: $basic-gutter !important; |
|
4 |
+ &#left { |
|
5 |
+ -ms-flex: 0 0 $left-col--width; |
|
6 |
+ flex: 0 0 $left-col--width; |
|
7 |
+ } |
|
8 |
+ |
|
9 |
+ &#right { |
|
10 |
+ -ms-flex: 0 0 $right-col--width; |
|
11 |
+ flex: 0 0 $right-col--width; |
|
12 |
+ } |
|
13 |
+ } |
|
14 |
+ |
|
15 |
+ .inside { |
|
16 |
+ .mod_navigation { |
|
17 |
+ margin-top: -0.25rem; |
|
18 |
+ |
|
19 |
+ ul { |
|
20 |
+ list-style-type: none; |
|
21 |
+ padding: 0px; |
|
22 |
+ margin: 0px; |
|
23 |
+ |
|
24 |
+ li { |
|
25 |
+ a, |
|
26 |
+ strong { |
|
27 |
+ transition: all 0.1s ease; |
|
28 |
+ } |
|
29 |
+ } |
|
30 |
+ } |
|
31 |
+ |
|
32 |
+ ul.level_1 { |
|
33 |
+ > li { |
|
34 |
+ > a, |
|
35 |
+ > strong { |
|
36 |
+ font-size: rfs-value(20px); |
|
37 |
+ color: var(--bs-primary); |
|
38 |
+ text-decoration: none; |
|
39 |
+ display: block; |
|
40 |
+ padding: 0.75rem 0; |
|
41 |
+ line-height: 1; |
|
42 |
+ |
|
43 |
+ &.active, |
|
44 |
+ &:hover, |
|
45 |
+ &.trail { |
|
46 |
+ color: var(--bs-body-color); |
|
47 |
+ } |
|
48 |
+ } |
|
49 |
+ } |
|
50 |
+ } |
|
51 |
+ |
|
52 |
+ ul.level_2 { |
|
53 |
+ margin-bottom: 0.25rem; |
|
54 |
+ |
|
55 |
+ > li { |
|
56 |
+ > a, |
|
57 |
+ > strong { |
|
58 |
+ font-size: rfs-value(18px); |
|
59 |
+ padding: 0.35rem 1.25rem; |
|
60 |
+ display: block; |
|
61 |
+ text-decoration: none; |
|
62 |
+ color: var(--bs-body-color); |
|
63 |
+ |
|
64 |
+ &.active, |
|
65 |
+ &:hover, |
|
66 |
+ &.trail { |
|
67 |
+ background-color: var(--bs-gray-300); |
|
68 |
+ } |
|
69 |
+ } |
|
70 |
+ } |
|
71 |
+ } |
|
72 |
+ } |
|
73 |
+ |
|
74 |
+ > * { |
|
75 |
+ &:not(:first-child) { |
|
76 |
+ padding-top: $basic-gutter; |
|
77 |
+ border-top: 1px solid var(--bs-primary); |
|
78 |
+ margin-top: $basic-gutter; |
|
79 |
+ } |
|
80 |
+ } |
|
81 |
+ } |
|
82 |
+} |