44 lines
732 B
CSS
44 lines
732 B
CSS
.gh-pagehead {
|
|
position: sticky;
|
|
top: 4vmin;
|
|
grid-column: wide-start/main-start;
|
|
max-width: 200px;
|
|
height: max-content;
|
|
padding-top: 0.8rem;
|
|
font-size: 1.4rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.gh-pagehead-title {
|
|
font-size: 2.1rem;
|
|
font-weight: 600;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.gh-pagehead-description {
|
|
margin-top: 0.8rem;
|
|
line-height: 1.45;
|
|
color: var(--color-secondary-text);
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.gh-pagehead {
|
|
margin-bottom: 4.8rem;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) and (max-width: 991px) {
|
|
.gh-pagehead {
|
|
margin-bottom: 8rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.gh-pagehead {
|
|
position: static;
|
|
grid-column: main-start / main-end;
|
|
max-width: 480px;
|
|
padding-top: 0;
|
|
}
|
|
}
|