website/_includes/styles/components/header.scss
Foster Hangdaan 185ed9f36e
Remove heading and subheading metadata
We just use `title` and `description` now.
2023-08-03 18:31:28 -04:00

18 lines
401 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;
}
p.subheading {
font-style: italic;
}
}