_masthead.scss 770 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .bd-masthead {
  2. padding: 3rem 0;
  3. background: linear-gradient(165deg, tint-color($bd-purple-light, 85%) 50%, $white 50%);
  4. h1 {
  5. @include font-size(4rem);
  6. line-height: 1;
  7. }
  8. p:not(.lead) {
  9. color: $gray-700;
  10. }
  11. .btn {
  12. padding: .8rem 2rem;
  13. font-weight: 600;
  14. }
  15. .lead {
  16. @include font-size(1.5rem);
  17. font-weight: 400;
  18. color: $gray-700;
  19. }
  20. }
  21. @include media-breakpoint-up(md) {
  22. .mw-md-75 { max-width: 75%; }
  23. }
  24. .masthead-followup-icon {
  25. padding: .75rem;
  26. background-image: linear-gradient(to bottom right, rgba(255, 255, 255, .2), rgba(255, 255, 255, .01));
  27. @include border-radius(.75rem);
  28. box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .1);
  29. }
  30. .masthead-followup-svg {
  31. filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .125));
  32. }