website/_includes/styles/components/header.scss
Foster Hangdaan 8bfe718b41
Change header styles
- Use Hubot Sans font family for author and timestamp.
- Remove italics of subheading.
2023-11-29 13:12:49 -05:00

24 lines
569 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.author {
font-family: var(--font--sans-serif-alt);
font-weight: 450;
font-stretch: 97%;
}
}