overlays.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. @import "colors";
  2. #overlays {
  3. color: $musare_color_white;
  4. .overlay {
  5. background-color: $musare_color_primary_blue;
  6. display: block;
  7. position: absolute;
  8. top: 64px;
  9. right: 0;
  10. left: 0;
  11. min-height: 100%;
  12. z-index: 2;
  13. .back {
  14. display: inline-block;
  15. width: 32px;
  16. height: 32px;
  17. padding: 0px;
  18. margin: 0 0 0 13px;
  19. float: left;
  20. i {
  21. font-size: 32px;
  22. }
  23. }
  24. .content {
  25. margin-top: 16px;
  26. width: 296px;
  27. .custom-messages {
  28. &.custom-messages-error {
  29. border-color: $musare_color_primary_red;
  30. color: $musare_color_primary_red;
  31. }
  32. &.custom-messages-info {
  33. border-color: $musare_color_dark_blue;
  34. color: $musare_color_dark_blue;
  35. }
  36. &.custom-messages-success {
  37. border-color: $musare_color_green;
  38. color: $musare_color_green;
  39. }
  40. }
  41. label {
  42. color: $musare_color_white;
  43. }
  44. button {
  45. background-color: $musare_color_white;
  46. color: $musare_color_primary_blue;
  47. border-radius: 50px;
  48. &:hover, &:focus {
  49. background-color: $musare_color_light_gray;
  50. color: $musare_color_primary_blue;
  51. }
  52. }
  53. .red-button {
  54. background-color: $musare_color_primary_red;
  55. color: $musare_color_white;
  56. &:hover, &:focus {
  57. background-color: $musare_color_secondary_red; //TODO Fix these colors
  58. color: $musare_color_white;
  59. cursor: pointer;
  60. }
  61. }
  62. h2 {
  63. font-size: 16px;
  64. }
  65. }
  66. }
  67. }