33 lines
652 B
CSS
33 lines
652 B
CSS
.Header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
padding: 1rem 1.25rem;
|
|
border-bottom: 1px solid var(--ifm-color-emphasis-200);
|
|
}
|
|
|
|
.Header__avatar {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 1.5rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.Header__info h3 {
|
|
margin: 0 0 0.25rem;
|
|
color: var(--ifm-font-color-base);
|
|
font-size: 1.125rem;
|
|
}
|
|
|
|
.Header__info p {
|
|
margin: 0;
|
|
color: var(--ifm-color-emphasis-600);
|
|
font-size: 0.85rem;
|
|
}
|