_section.scss 641 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .section {
  2. position: relative;
  3. padding-bottom: 100px;
  4. &-primary {
  5. color: $primary-color-dark;
  6. background: linear-gradient(to bottom left, $primary-color, $primary-color-light);
  7. .section-title {
  8. color: $white;
  9. }
  10. a {
  11. color: $white;
  12. }
  13. }
  14. &-secondary {
  15. background: $grey;
  16. }
  17. h4 {
  18. font-weight: 400;
  19. color: $text-color;
  20. font-size: 28px;
  21. padding-top: 80px;
  22. }
  23. }
  24. .section-title {
  25. text-align: center;
  26. font-family: $panton;
  27. font-size: 100px;
  28. color: $primary-color;
  29. padding-top: 100px;
  30. padding-bottom: 30px;
  31. }
  32. .section-subtitle {
  33. margin-top: -22px;
  34. font-size: 23px;
  35. color: $text-color;
  36. font-weight: 400;
  37. }