2024-10-30 19:29:14 +01:00
|
|
|
.app-bar {
|
2024-10-25 19:36:49 +02:00
|
|
|
height: 80px;
|
2024-10-22 15:37:31 +02:00
|
|
|
justify-content: space-between;
|
|
|
|
|
border-bottom: 1px solid var(--codex-border-color);
|
|
|
|
|
display: flex;
|
2024-10-31 19:18:21 +01:00
|
|
|
padding: 16px;
|
2024-10-30 19:29:14 +01:00
|
|
|
border-bottom: 1px solid #96969633;
|
2024-10-25 19:36:49 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
background-color: #1c1c1c;
|
2024-10-30 19:29:14 +01:00
|
|
|
border-right: 12px solid transparent;
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 1;
|
2024-10-22 15:37:31 +02:00
|
|
|
|
2024-10-31 19:18:21 +01:00
|
|
|
@media (min-width: 1000px) {
|
|
|
|
|
& {
|
|
|
|
|
padding: 20px 48px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-30 19:29:14 +01:00
|
|
|
&:not(.app-bar--offline):not(.app-bar--no-persistence) {
|
|
|
|
|
border-right-color: #6ccc93;
|
|
|
|
|
}
|
2024-10-22 15:37:31 +02:00
|
|
|
|
2024-10-30 19:29:14 +01:00
|
|
|
&.app-bar--offline {
|
|
|
|
|
border-right-color: var(--codex-input-color-error);
|
|
|
|
|
}
|
2024-10-22 15:37:31 +02:00
|
|
|
|
2024-10-30 19:29:14 +01:00
|
|
|
&.app-bar--no-persistence {
|
|
|
|
|
border-right-color: rgb(var(--codex-color-warning));
|
|
|
|
|
}
|
2024-10-25 19:36:49 +02:00
|
|
|
|
2024-10-30 19:29:14 +01:00
|
|
|
h1 {
|
|
|
|
|
font:
|
|
|
|
|
500 18px/24px "Inter",
|
|
|
|
|
sans-serif;
|
|
|
|
|
letter-spacing: -0.015em;
|
|
|
|
|
color: white;
|
2024-10-31 19:18:21 +01:00
|
|
|
text-transform: capitalize;
|
2024-10-30 19:29:14 +01:00
|
|
|
}
|
2024-10-25 19:36:49 +02:00
|
|
|
|
2024-10-30 19:29:14 +01:00
|
|
|
h2 {
|
|
|
|
|
font:
|
|
|
|
|
400 14px/20px "Inter",
|
|
|
|
|
sans-serif;
|
|
|
|
|
letter-spacing: -0.006em;
|
|
|
|
|
color: #969696cc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> div {
|
|
|
|
|
span {
|
|
|
|
|
background: #141414;
|
|
|
|
|
height: 48px;
|
|
|
|
|
width: 48px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border: 1px solid #353639;
|
|
|
|
|
border-radius: 50%;
|
2024-10-31 19:18:21 +01:00
|
|
|
color: #969696;
|
|
|
|
|
}
|
2024-10-30 19:29:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
aside {
|
|
|
|
|
svg {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background-color: #141414;
|
|
|
|
|
border-radius: var(--codex-border-radius);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
font:
|
|
|
|
|
500 14px/20px "Inter",
|
|
|
|
|
sans-serif;
|
|
|
|
|
letter-spacing: -0.006em;
|
|
|
|
|
color: #8d8d8d;
|
2024-10-31 19:18:21 +01:00
|
|
|
|
|
|
|
|
@media (max-width: 999px) {
|
|
|
|
|
& {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div:last-child {
|
|
|
|
|
cursor: pointer;
|
2024-10-30 19:29:14 +01:00
|
|
|
}
|
|
|
|
|
}
|
2024-10-22 15:37:31 +02:00
|
|
|
}
|
|
|
|
|
|
2024-10-30 19:29:14 +01:00
|
|
|
/* @media (min-width: 1000px) {
|
2024-10-22 15:37:31 +02:00
|
|
|
.appBar-burger {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-10-30 19:29:14 +01:00
|
|
|
} */
|