website/_includes/styles/components/header.scss

22 lines
506 B
SCSS
Raw Normal View History

.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));
2023-07-26 22:08:14 -04:00
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;
}
}