Foster Hangdaan
c7502688ee
This aims to improve the readability of the text on desktop displays. It mainly increases the font size and line height of the text in the main content.
21 lines
506 B
SCSS
21 lines
506 B
SCSS
.page-header {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 2rem 1rem;
|
|
max-width: var(--page--max-width);
|
|
text-align: center;
|
|
h1 {
|
|
margin: 0;
|
|
background: -webkit-linear-gradient(45deg, var(--color-red), var(--color-blue));
|
|
background-clip: text;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
@media screen and (min-width: 48rem) {
|
|
font-size: 2.5rem;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
}
|
|
p.subheading {
|
|
font-style: italic;
|
|
}
|
|
}
|