24 lines
421 B
CSS
24 lines
421 B
CSS
.gh-cover {
|
|
position: relative;
|
|
min-height: var(--cover-height, 50vh);
|
|
padding-top: 6.4rem;
|
|
padding-bottom: 6.4rem;
|
|
}
|
|
|
|
.gh-cover-image {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: -1;
|
|
object-fit: cover;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.has-serif-title .gh-cover-title {
|
|
font-family: var(--font-serif);
|
|
}
|
|
|
|
.has-serif-body .gh-cover-description {
|
|
font-family: var(--font-serif);
|
|
}
|