96 lines
1.7 KiB
CSS
Raw Normal View History

.app-bar {
2024-10-25 19:36:49 +02:00
height: 80px;
2024-10-22 15:37:31 +02:00
justify-content: space-between;
2024-11-26 18:41:40 +01:00
border-bottom: 1px solid rgba(150, 150, 150, 0.2);
2024-10-22 15:37:31 +02:00
display: flex;
2024-10-31 19:18:21 +01:00
padding: 16px;
2024-11-26 18:41:40 +01:00
border-bottom: 1px solid rgba(150, 150, 150, 0.2);
2024-10-25 19:36:49 +02:00
box-sizing: border-box;
2024-11-26 18:41:40 +01:00
background-color: rgb(28, 28, 28);
border-right: 12px solid transparent;
position: sticky;
top: 0;
2024-11-09 13:12:16 +07:00
z-index: 2;
2024-10-22 15:37:31 +02:00
2024-10-31 19:18:21 +01:00
@media (min-width: 1000px) {
& {
padding: 20px 48px;
}
}
&:not(.app-bar--offline):not(.app-bar--no-persistence) {
2024-11-26 18:41:40 +01:00
border-right-color: rgb(108, 204, 147);
}
2024-10-22 15:37:31 +02:00
&.app-bar--offline {
2024-11-26 18:41:40 +01:00
border-right-color: rgb(251, 55, 72);
}
2024-10-22 15:37:31 +02:00
&.app-bar--no-persistence:not(.app-bar--offline) {
2024-11-26 18:41:40 +01:00
border-right-color: rgb(251, 198, 75);
}
2024-10-25 19:36:49 +02: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-25 19:36:49 +02:00
h2 {
font:
400 14px/20px "Inter",
sans-serif;
letter-spacing: -0.006em;
2024-11-26 18:41:40 +01:00
color: rgba(150, 150, 150, 0.8);
}
> div {
span {
2024-11-26 18:41:40 +01:00
background: rgb(20, 20, 20);
height: 48px;
width: 48px;
display: flex;
align-items: center;
justify-content: center;
2024-11-26 18:41:40 +01:00
border: 1px solid rgb(53, 54, 57);
border-radius: 50%;
2024-11-26 18:41:40 +01:00
color: rgba(150, 150, 150, 1);
2024-10-31 19:18:21 +01:00
}
}
aside {
svg {
padding: 10px;
2024-11-26 18:41:40 +01:00
background-color: rgb(20, 20, 20);
border-radius: 5px;
}
span {
font:
500 14px/20px "Inter",
sans-serif;
letter-spacing: -0.006em;
2024-11-26 18:41:40 +01:00
color: rgb(141, 141, 141);
2024-10-31 19:18:21 +01:00
@media (max-width: 999px) {
& {
display: none;
}
}
}
2024-11-07 13:47:59 +01:00
> div:last-child {
2024-10-31 19:18:21 +01:00
cursor: pointer;
}
}
2024-11-22 15:07:40 +01:00
@media (max-width: 800px) {
aside {
display: none;
}
}
2024-10-22 15:37:31 +02:00
}