_modals.scss 977 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .modal {
  2. .modal-header {
  3. border: none;
  4. padding: 25px 25px 5px 25px;
  5. .modal-title {
  6. font-weight: bold;
  7. font-size: 16px;
  8. }
  9. }
  10. .modal-content {
  11. @include border-radius(0);
  12. box-shadow: 0 5px 20px rgba(0,0,0,.31) !important;
  13. border: none;
  14. .modal-body {
  15. color: #777;
  16. padding: 15px 25px;
  17. }
  18. }
  19. .modal-footer {
  20. border: none;
  21. }
  22. }
  23. @each $key, $val in $colors {
  24. .modal-col-#{$key} {
  25. background-color: $val;
  26. .modal-body,
  27. .modal-title {
  28. color: #fff !important;
  29. }
  30. .modal-footer {
  31. background-color: rgba(0,0,0,0.12);
  32. .btn-link {
  33. color: #fff !important;
  34. &:hover,
  35. &:active,
  36. &:focus {
  37. background-color: rgba(0,0,0,0.12);
  38. }
  39. }
  40. }
  41. }
  42. }