30 lines
457 B
SCSS
30 lines
457 B
SCSS
|
.intro {
|
||
|
// background: var(--color-theme-highlight-block);
|
||
|
// padding: 8rem 0;
|
||
|
margin-top: 8rem;
|
||
|
|
||
|
&__summary {
|
||
|
--flow-space: #{get-size(500)};
|
||
|
font-size: get-size(500);
|
||
|
|
||
|
a {
|
||
|
color: currentColor;
|
||
|
|
||
|
&:hover {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__heading {
|
||
|
max-width: 44rem;
|
||
|
color: var(--color-text);
|
||
|
margin-bottom: 4rem;
|
||
|
font-size: 2.5rem;
|
||
|
|
||
|
&--compact {
|
||
|
max-width: 20ex;
|
||
|
}
|
||
|
}
|
||
|
}
|