71 lines
951 B
CSS
71 lines
951 B
CSS
|
* {
|
||
|
all: unset;
|
||
|
}
|
||
|
|
||
|
title {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
background-color: #1a1a1a;
|
||
|
padding: 0.3em 1em;
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
.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;
|
||
|
}
|
||
|
|
||
|
.header-right a {
|
||
|
color: #f0f0f0;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
text-decoration: none;
|
||
|
border-radius: 50%;
|
||
|
padding: 0.5em;
|
||
|
}
|
||
|
.header-right a img {
|
||
|
width: 30px;
|
||
|
height: 30px;
|
||
|
}
|
||
|
.header-right a:hover {
|
||
|
background-color: #333;
|
||
|
}
|
||
|
|
||
|
.profile-icon {
|
||
|
width: 30px;
|
||
|
height: 30px;
|
||
|
border-radius: 50%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-color: #232323;
|
||
|
}
|