31 lines
496 B
CSS
31 lines
496 B
CSS
.profile-page {
|
|
max-width: 520px;
|
|
padding-top: 60px;
|
|
text-align: center;
|
|
}
|
|
|
|
.avatar {
|
|
width: 84px;
|
|
height: 84px;
|
|
border-radius: 50%;
|
|
background: var(--color-primary-soft);
|
|
color: var(--color-primary-text);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 34px;
|
|
font-weight: 700;
|
|
margin: 0 auto 18px;
|
|
}
|
|
|
|
.titolo {
|
|
font-size: 24px;
|
|
margin: 0 0 6px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.sottotitolo {
|
|
color: var(--color-text-muted);
|
|
margin: 0 0 24px;
|
|
}
|