Files
frontend/css/profile.css
2025-07-10 04:55:35 -04:00

97 lines
1.8 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%;
}
#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;
}
#edit {
width: 48px;
cursor: pointer;
}
#search {
height: 36px !important;
}
results {
display: flex;
width: 95%;
height: 120px;
overflow-y: scroll;
background-color: var(--color-4);
box-shadow: 0 0 10px var(--color-4);
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: flex;
flex-direction: column;
}
result h2 {
font-size: 16px;
margin: 0px;
}
result p {
font-size: 12px;
margin: 0px;
}