2024-11-08 11:21:42 +00:00
|
|
|
* {
|
|
|
|
all: unset;
|
2024-11-08 18:32:45 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
2024-11-08 11:21:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
title {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
background-color: #1a1a1a;
|
2024-11-08 18:32:45 +00:00
|
|
|
padding: 1px 1em;
|
2024-11-08 11:21:42 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
border-bottom: 1px solid #444;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-left,
|
|
|
|
.header-right {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 1em;
|
2024-11-08 18:32:45 +00:00
|
|
|
font-family: "Noto Sans", "Liberation Sans";
|
2024-11-08 11:21:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
.logo img {
|
|
|
|
height: 32px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-left a {
|
|
|
|
color: #f0f0f0;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 0.95rem;
|
|
|
|
}
|
|
|
|
.header-left a:hover {
|
|
|
|
color: #bfbfbf;
|
2024-11-08 18:32:45 +00:00
|
|
|
background-color: #444;
|
2024-11-08 11:21:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-right a {
|
|
|
|
color: #f0f0f0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
.header-right a img {
|
2024-11-08 18:32:45 +00:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
border-radius: 50%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.header-right a.profile-icon {
|
2024-11-08 11:21:42 +00:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
2024-11-08 18:32:45 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
/*.header-left {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
border-radius: 50%;
|
|
|
|
}*/
|
2024-11-08 11:21:42 +00:00
|
|
|
}
|
|
|
|
.header-right a:hover {
|
|
|
|
background-color: #333;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: #232323;
|
|
|
|
}
|