CardPopup.styl 793B

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