1//
2// Hero unit
3// --------------------------------------------------
4
5
6.hero-unit {
7  padding: 60px;
8  margin-bottom: 30px;
9  font-size: 18px;
10  font-weight: 200;
11  line-height: @baseLineHeight * 1.5;
12  color: @heroUnitLeadColor;
13  background-color: @heroUnitBackground;
14  .border-radius(6px);
15  h1 {
16    margin-bottom: 0;
17    font-size: 60px;
18    line-height: 1;
19    color: @heroUnitHeadingColor;
20    letter-spacing: -1px;
21  }
22  li {
23    line-height: @baseLineHeight * 1.5; // Reset since we specify in type.less
24  }
25}
26