blob: ecbf7862c3c19c8cd44e036a7a6d115aad9e85a7 [file] [log] [blame]
pineafanff3d4522022-05-06 19:51:02 +01001.icon {
2 height: 32px;
3 margin: 0;
4 padding: 0;
5 width: 32px;
6}
pineafan15b813d2022-02-13 10:06:09 +00007
pineafanff3d4522022-05-06 19:51:02 +01008.container {
pineafan15b813d2022-02-13 10:06:09 +00009 position: fixed;
10 top: 0;
pineafanff3d4522022-05-06 19:51:02 +010011 display: flex;
12 justify-content: left;
13 align-items: center;
14 flex-direction: row;
15 gap: 10px;
16
17 height: 42px;
18 padding: 5px;
19 padding-left: 25px;
20
21 z-index: 69;
22}
23
24.divider {
25 height: 100%;
26 width: 3px;
27 border-radius: 100vh;
28 background-color: #424242;
29}
30
31.skipNav {
32 width: 0%;
pineafan15b813d2022-02-13 10:06:09 +000033 overflow: hidden;
pineafanff3d4522022-05-06 19:51:02 +010034 color: white;
35 max-lines: 1;
36 text-overflow: clip;
37 -webkit-line-clamp: 1;
38 height: 20px;
39 transition: width 0.3s ease-in-out;
pineafan15b813d2022-02-13 10:06:09 +000040}
41
pineafanff3d4522022-05-06 19:51:02 +010042.skipNav:focus {
43 width: 100%;
44 overflow: auto;
45}