CardPopup.styl 739B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @import '../../../css/Variable.styl'
  2. .cardPopup
  3. position fixed
  4. display flex
  5. justify-content center
  6. width 100%
  7. z-index 10
  8. &__container
  9. margin-top 50px
  10. border 0
  11. border-radius 10px
  12. width 800px
  13. background lightGrey
  14. box-shadow shadow-all
  15. &__header
  16. border-top-right-radius 10px
  17. border-top-left-radius 10px
  18. width 100%
  19. height 8px
  20. &__close
  21. display flex
  22. justify-content flex-end
  23. margin 5px
  24. cursor pointer
  25. &__body
  26. display flex
  27. align-items center
  28. margin 10px 0 25px 0
  29. &__icon
  30. padding 0 30px
  31. font-size 40px
  32. &__text
  33. &__title
  34. font-size 20px
  35. font-weight 600
  36. &__message
  37. padding-right 20px
  38. font-weight 500