1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,38 @@ |
1 |
+.mod_breadcrumb { |
|
2 |
+ margin-top: .25rem; |
|
3 |
+ |
|
4 |
+ ul { |
|
5 |
+ list-style-type: none; |
|
6 |
+ padding: 0px; |
|
7 |
+ margin: 0px; |
|
8 |
+ text-transform: uppercase; |
|
9 |
+ @include font-size(16px); |
|
10 |
+ |
|
11 |
+ li { |
|
12 |
+ display: inline-block; |
|
13 |
+ color: var(--bs-secondary); |
|
14 |
+ |
|
15 |
+ &:not(:last-child) { |
|
16 |
+ &:after { |
|
17 |
+ @extend %fa-icon; |
|
18 |
+ @extend .far; |
|
19 |
+ content: fa-content($fa-var-angle-right); |
|
20 |
+ display: inline-block; |
|
21 |
+ color: var(--bs-primary); |
|
22 |
+ margin: 0 5px 0px 8px; |
|
23 |
+ } |
|
24 |
+ } |
|
25 |
+ |
|
26 |
+ > a { |
|
27 |
+ display: inline-block; |
|
28 |
+ text-decoration: none; |
|
29 |
+ color: var(--bs-primary); |
|
30 |
+ |
|
31 |
+ &:hover { |
|
32 |
+ text-decoration: underline; |
|
33 |
+ } |
|
34 |
+ } |
|
35 |
+ |
|
36 |
+ } |
|
37 |
+ } |
|
38 |
+} |
|
0 | 39 |
\ No newline at end of file |