hero-unit.less 521 B

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