You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_overlay.scss 961B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .overlay {
  2. &__container {
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. position: fixed;
  8. z-index: $overlayZ;
  9. background: $defaultBackground;
  10. }
  11. &__content {
  12. margin: 0 auto;
  13. width: 56%;
  14. &_bottom {
  15. position: absolute;
  16. bottom: 0;
  17. }
  18. }
  19. }
  20. .inlay {
  21. margin-top: 14%;
  22. @include border-radius(3px);
  23. padding: 40px 38px 44px;
  24. color: #fff;
  25. background: lighten($defaultBackground, 20%);
  26. text-align: center;
  27. &__title {
  28. margin: 12px 0;
  29. padding-bottom: 17px;
  30. color: $popoverFontColor;
  31. font-size: 21px;
  32. letter-spacing: 0.3px;
  33. border-bottom: 1px solid $auiBorderColor;
  34. }
  35. &__text {
  36. color: $popoverFontColor;
  37. display: block;
  38. margin-top: 22px;
  39. font-size: 16px;
  40. }
  41. &__icon {
  42. margin: 0 10px;
  43. font-size: 50px;
  44. }
  45. }