blob: 74d7eeaae3dfb5567ccc6c932d18dcd244cc33ca [file] [log] [blame]
pineafanff3d4522022-05-06 19:51:02 +01001.icon {
2 height: 32px;
3 margin: 0;
4 padding: 0;
5 width: 32px;
pineafan802daca2022-10-24 21:57:29 +01006 user-select: none;
7}
8
9.themeChangeIcon {
10 margin-bottom: 10px;
11 transform: translateY(var(--theme-ui-colors-offset));
12 transition: transform 0.3s ease-in-out;
pineafanff3d4522022-05-06 19:51:02 +010013}
pineafan15b813d2022-02-13 10:06:09 +000014
pineafanff3d4522022-05-06 19:51:02 +010015.container {
pineafan15b813d2022-02-13 10:06:09 +000016 position: fixed;
17 top: 0;
pineafanff3d4522022-05-06 19:51:02 +010018 display: flex;
19 justify-content: left;
20 align-items: center;
21 flex-direction: row;
pineafan802daca2022-10-24 21:57:29 +010022 overflow-y: hidden;
pineafanff3d4522022-05-06 19:51:02 +010023 gap: 10px;
24
25 height: 42px;
26 padding: 5px;
27 padding-left: 25px;
28
29 z-index: 69;
30}
31
32.divider {
33 height: 100%;
34 width: 3px;
35 border-radius: 100vh;
36 background-color: #424242;
37}
38
39.skipNav {
40 width: 0%;
pineafan15b813d2022-02-13 10:06:09 +000041 overflow: hidden;
pineafanff3d4522022-05-06 19:51:02 +010042 color: white;
43 max-lines: 1;
44 text-overflow: clip;
45 -webkit-line-clamp: 1;
46 height: 20px;
47 transition: width 0.3s ease-in-out;
pineafan15b813d2022-02-13 10:06:09 +000048}
49
pineafanff3d4522022-05-06 19:51:02 +010050.skipNav:focus {
51 width: 100%;
52 overflow: auto;
53}