_call-to-action.scss 368 B

1234567891011121314151617
  1. .call-to-action {
  2. position: relative;
  3. background-color: $gray-800;
  4. background: url('../img/bg-masthead.jpg') no-repeat center center;
  5. @include background-cover;
  6. padding-top: 7rem;
  7. padding-bottom: 7rem;
  8. .overlay {
  9. position: absolute;
  10. background-color: $gray-900;
  11. height: 100%;
  12. width: 100%;
  13. top: 0;
  14. left: 0;
  15. opacity: 0.3;
  16. }
  17. }