31 lines
No EOL
411 B
CSS
31 lines
No EOL
411 B
CSS
.header {
|
|
display: flex;
|
|
}
|
|
|
|
.name-section {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.name {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.identifier {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.profile-card {
|
|
padding: 1rem;
|
|
border-radius: 1rem;
|
|
background-color: var(--foreground-color);
|
|
max-width: 45rem;
|
|
margin-top: 1rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.avatar {
|
|
border-radius: 8px;
|
|
object-fit: cover;
|
|
width: 5em;
|
|
height: 5em;
|
|
} |