Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_overlay.scss 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. position: absolute;
  13. margin: 0 auto;
  14. height: 100%;
  15. width: 56%;
  16. left: 50%;
  17. @include transform(translateX(-50%));
  18. &_bottom {
  19. position: absolute;
  20. bottom: 0;
  21. }
  22. }
  23. &__policy {
  24. position: absolute;
  25. bottom: 24px;
  26. }
  27. }
  28. .inlay {
  29. margin-top: 14%;
  30. @include border-radius(3px);
  31. padding: 40px 38px 44px;
  32. color: #fff;
  33. background: lighten($defaultBackground, 20%);
  34. text-align: center;
  35. &__title {
  36. margin: 12px 0;
  37. padding-bottom: 17px;
  38. color: $popoverFontColor;
  39. font-size: 21px;
  40. letter-spacing: 0.3px;
  41. border-bottom: 1px solid $auiBorderColor;
  42. }
  43. &__text {
  44. color: $popoverFontColor;
  45. display: block;
  46. margin-top: 22px;
  47. font-size: 16px;
  48. }
  49. &__icon {
  50. margin: 0 10px;
  51. font-size: 50px;
  52. }
  53. }