123 lines
2.2 KiB
CSS
123 lines
2.2 KiB
CSS
section {
|
|
width: 90%;
|
|
height: 240px;
|
|
margin: 24px;
|
|
background-color: color-mix(in srgb, var(--color-2) 40%, #00000000 60%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 0 10px var(--color-2);
|
|
border-radius: 20px;
|
|
backdrop-filter: blur(6px);
|
|
}
|
|
.controls {
|
|
width: 48px !important;
|
|
margin: 8px !important;
|
|
cursor: pointer;
|
|
}
|
|
section img {
|
|
height: 90%;
|
|
aspect-ratio: 1 / 1;
|
|
margin: 32px;
|
|
border-radius: 16px;
|
|
}
|
|
.column {
|
|
flex-direction: column;
|
|
}
|
|
right {
|
|
margin-left: auto;
|
|
margin-right: 16px;
|
|
}
|
|
.badges img {
|
|
width: 32px;
|
|
border-radius: 2px;
|
|
margin: 8px;
|
|
}
|
|
p {
|
|
font-size: 24px;
|
|
letter-spacing: 0.5px;
|
|
line-height: 36px;
|
|
}
|
|
.profile-element {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 33.3%;
|
|
}
|
|
.profile-element h2 {
|
|
font-size: 32px;
|
|
}
|
|
.profile-element h2 {
|
|
font-size: 28px;
|
|
}
|
|
.profile-element h3 {
|
|
font-size: 20px;
|
|
}
|
|
#enter {
|
|
position: absolute;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: color-mix(in srgb, #000000 60%, #00000000 40%);
|
|
backdrop-filter: blur(16px);
|
|
z-index: 9999999999;
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
transition-duration: 1s;
|
|
}
|
|
#search {
|
|
height: 36px !important;
|
|
}
|
|
.edit {
|
|
cursor: context-menu;
|
|
}
|
|
#blur {
|
|
position: absolute;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
top: 0;
|
|
left: 0;
|
|
backdrop-filter: blur(16px);
|
|
z-index: 999;
|
|
display: none;
|
|
}
|
|
results {
|
|
display: flex;
|
|
width: 95%;
|
|
height: 120px;
|
|
overflow-y: scroll;
|
|
background-color: color-mix(in srgb, var(--color-3) 50%, #00000000 50%);
|
|
box-shadow: 0 0 10px var(--color-3);
|
|
bottom: 16px;
|
|
flex-direction: column;
|
|
border-radius: 8px;
|
|
}
|
|
result {
|
|
border-color: white;
|
|
border-width: 4px;
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
margin: 2px;
|
|
width: auto;
|
|
text-align: left;
|
|
display: none;
|
|
flex-direction: column;
|
|
transition-duration: 0.25s;
|
|
}
|
|
result:hover {
|
|
background-color: #ffffff11;
|
|
}
|
|
result h2 {
|
|
font-size: 16px;
|
|
margin: 0px;
|
|
}
|
|
result p {
|
|
font-size: 12px;
|
|
margin: 0px;
|
|
line-height: 16px;
|
|
width: 80%;
|
|
}
|
|
.about {
|
|
width: 70%;
|
|
} |