_background.scss 259 B

123456789101112131415
  1. .bg-white-overlay {
  2. color: $white;
  3. background-color: rgba($light, .24);
  4. }
  5. .bg-dark-overlay {
  6. color: $white;
  7. background-color: rgba($dark, .24);
  8. }
  9. .bg-cover {
  10. background-repeat: no-repeat;
  11. background-size: cover;
  12. background-position: center;
  13. }