blob: 394cba2711168cc880e39f4c0492f449d55c774f [file] [log] [blame]
pineafanff3d4522022-05-06 19:51:02 +01001.icon {
2 height: 32px;
pineafan74f16742022-11-07 21:57:55 +00003 width: 32px;
pineafanff3d4522022-05-06 19:51:02 +01004 margin: 0;
5 padding: 0;
pineafan802daca2022-10-24 21:57:29 +01006 user-select: none;
PineaFan93f540e2022-12-04 22:05:57 +00007 border-radius: 100vw;
pineafan802daca2022-10-24 21:57:29 +01008}
9
10.themeChangeIcon {
11 margin-bottom: 10px;
12 transform: translateY(var(--theme-ui-colors-offset));
13 transition: transform 0.3s ease-in-out;
pineafanff3d4522022-05-06 19:51:02 +010014}
pineafan15b813d2022-02-13 10:06:09 +000015
pineafanff3d4522022-05-06 19:51:02 +010016.container {
pineafan7bd0ad62022-10-26 22:11:29 +010017 height: 42px;
18 width: 100%;
19
pineafanff3d4522022-05-06 19:51:02 +010020 display: flex;
pineafan7bd0ad62022-10-26 22:11:29 +010021 flex-direction: row;
pineafanff3d4522022-05-06 19:51:02 +010022 justify-content: left;
23 align-items: center;
pineafanff3d4522022-05-06 19:51:02 +010024 gap: 10px;
25
pineafanff3d4522022-05-06 19:51:02 +010026 padding-left: 25px;
pineafan7bd0ad62022-10-26 22:11:29 +010027 padding-block: 5px;
28 transition: 0.3s ease-in-out;
29 overflow: hidden;
pineafanff3d4522022-05-06 19:51:02 +010030}
31
32.divider {
33 height: 100%;
34 width: 3px;
35 border-radius: 100vh;
pineafanb18f0192022-10-27 22:08:36 +010036 background-color: var(--theme-ui-colors-borderHint);
37 transition: 0.3s ease-in-out;
pineafanff3d4522022-05-06 19:51:02 +010038}
39
40.skipNav {
41 width: 0%;
pineafan15b813d2022-02-13 10:06:09 +000042 overflow: hidden;
pineafanff3d4522022-05-06 19:51:02 +010043 color: white;
44 max-lines: 1;
45 text-overflow: clip;
46 -webkit-line-clamp: 1;
47 height: 20px;
48 transition: width 0.3s ease-in-out;
pineafan15b813d2022-02-13 10:06:09 +000049}
50
pineafanff3d4522022-05-06 19:51:02 +010051.skipNav:focus {
pineafanb7c79742022-11-06 18:08:36 +000052 width: 150px;
pineafanff3d4522022-05-06 19:51:02 +010053 overflow: auto;
pineafan7bd0ad62022-10-26 22:11:29 +010054}
55
56.slideUp {
57 transform: translateY(-100%);
58}
59
60.cutoffContainer {
61 position: fixed;
62 height: 42px;
63 width: 100%;
64
65 top: 0;
66 overflow: hidden;
67 z-index: 100;
68}
69
70
71.message {
72 font-size: 1.2rem;
73 padding-left: 10px;
pineafanb18f0192022-10-27 22:08:36 +010074 color: var(--theme-ui-colors-text);
pineafan7bd0ad62022-10-26 22:11:29 +010075 transition: color 0.3s ease-in-out;
pineafanb18f0192022-10-27 22:08:36 +010076}