28 lines
554 B
CSS
28 lines
554 B
CSS
/*
|
|
Hero unit
|
|
========================================
|
|
*/
|
|
|
|
.hero-unit {
|
|
padding: 60px;
|
|
margin-bottom: 30px;
|
|
font-size: 18px;
|
|
font-weight: 200;
|
|
line-height: calc(var(--base-line-height) * 1.5);
|
|
color: var(--hero-unit-lead-color);
|
|
background-color: var(--hero-unit-background);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.hero-unit h1 {
|
|
margin-bottom: 0;
|
|
font-size: 60px;
|
|
line-height: 1;
|
|
color: var(--hero-unit-heading-color);
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
.hero-unit li {
|
|
line-height: calc(var(--base-line-height) * 1.5); /* Reset since we specify in type.css */
|
|
}
|