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.

_inlay.scss 585B

123456789101112131415161718192021222324252627282930
  1. .inlay {
  2. margin-top: 14%;
  3. @include border-radius(4px);
  4. padding: 40px 38px 44px;
  5. color: #fff;
  6. background: $inlayColorBg;
  7. text-align: center;
  8. &__title {
  9. margin: 17px 0;
  10. padding-bottom: 17px;
  11. color: $popoverFontColor;
  12. font-size: 21px;
  13. letter-spacing: 0.3px;
  14. border-bottom: 1px solid $inlayBorderColor;
  15. }
  16. &__text {
  17. color: $popoverFontColor;
  18. display: block;
  19. margin-top: 22px;
  20. font-size: 16px;
  21. }
  22. &__icon {
  23. margin: 0 10px;
  24. font-size: 50px;
  25. }
  26. }