Missing logos.
[wolnelektury.git] / src / wolnelektury / static / 2022 / styles / layout / _breadcrumb.scss
1 .l-breadcrumb {
2   display: flex;
3   margin: 18px 0;
4   align-items: center;
5
6   a {
7     font-size: 15px;
8     line-height: 160%;
9     color: #474747;
10
11     &:hover {
12       span {
13         text-decoration: underline;
14       }
15     }
16
17     &:not(:last-child) {
18       &:after {
19         font-size: 9px;
20         color: #007880;
21         content: $icon-arrow-right;
22         margin: 0 14px;
23
24         /* use !important to prevent issues with browser extensions that change fonts */
25         font-family: '#{$icomoon-font-family}' !important;
26         speak: never;
27         font-style: normal;
28         font-weight: normal;
29         font-variant: normal;
30         text-transform: none;
31         line-height: 1;
32
33         /* Better Font Rendering =========== */
34         -webkit-font-smoothing: antialiased;
35         -moz-osx-font-smoothing: grayscale;
36       }
37     }
38   }
39 }