blob: ca169bd3f28e93359fedbfba80cd9177da771d3b [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 {
pineafan7bd0ad62022-10-26 22:11:29 +010016 height: 42px;
17 width: 100%;
18
pineafanff3d4522022-05-06 19:51:02 +010019 display: flex;
pineafan7bd0ad62022-10-26 22:11:29 +010020 flex-direction: row;
pineafanff3d4522022-05-06 19:51:02 +010021 justify-content: left;
22 align-items: center;
pineafanff3d4522022-05-06 19:51:02 +010023 gap: 10px;
24
pineafanff3d4522022-05-06 19:51:02 +010025 padding-left: 25px;
pineafan7bd0ad62022-10-26 22:11:29 +010026 padding-block: 5px;
27 transition: 0.3s ease-in-out;
28 overflow: hidden;
pineafanff3d4522022-05-06 19:51:02 +010029}
30
31.divider {
32 height: 100%;
33 width: 3px;
34 border-radius: 100vh;
pineafanb18f0192022-10-27 22:08:36 +010035 background-color: var(--theme-ui-colors-borderHint);
36 transition: 0.3s ease-in-out;
pineafanff3d4522022-05-06 19:51:02 +010037}
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 {
pineafanb7c79742022-11-06 18:08:36 +000051 width: 150px;
pineafanff3d4522022-05-06 19:51:02 +010052 overflow: auto;
pineafan7bd0ad62022-10-26 22:11:29 +010053}
54
55.slideUp {
56 transform: translateY(-100%);
57}
58
59.cutoffContainer {
60 position: fixed;
61 height: 42px;
62 width: 100%;
63
64 top: 0;
65 overflow: hidden;
66 z-index: 100;
67}
68
69
70.message {
71 font-size: 1.2rem;
72 padding-left: 10px;
pineafanb18f0192022-10-27 22:08:36 +010073 color: var(--theme-ui-colors-text);
pineafan7bd0ad62022-10-26 22:11:29 +010074 transition: color 0.3s ease-in-out;
pineafanb18f0192022-10-27 22:08:36 +010075}