CardPopupCreateContent.styl 905B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @import '../../css/Variable.styl'
  2. .popupCreateContent
  3. position fixed
  4. top 0
  5. left 0
  6. display flex
  7. justify-content center
  8. width 100%
  9. z-index 5
  10. .cardPopup__container
  11. margin-top 120px
  12. border 0
  13. border-radius 10px
  14. width 400px
  15. background lightGrey
  16. box-shadow shadow-all
  17. &__header
  18. border-top-right-radius 10px
  19. border-top-left-radius 10px
  20. width 100%
  21. height 8px
  22. .createcontent
  23. width 100%
  24. &__close
  25. cursor pointer
  26. &__contentname
  27. display flex
  28. align-items baseline
  29. &__icon
  30. font-size 30px
  31. &__title
  32. font-size 20px
  33. &__form
  34. &__input
  35. width 100%
  36. border 1px solid grey
  37. border-radius 5px
  38. margin-bottom 25px
  39. padding 5px
  40. &__button
  41. display flex
  42. justify-content flex-end
  43. cursor pointer
  44. &:disabled
  45. cursor not-allowed