13 lines
279 B
SCSS
13 lines
279 B
SCSS
|
.page-header {
|
||
|
margin-bottom: 2rem;
|
||
|
text-align: center;
|
||
|
h1 {
|
||
|
background: -webkit-linear-gradient(45deg, var(--color-red), var(--color-blue));
|
||
|
-webkit-background-clip: text;
|
||
|
-webkit-text-fill-color: transparent;
|
||
|
}
|
||
|
.subheading {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
}
|