CardPopupCreateContent.styl 912B

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. background-color fileColor
  23. .createcontent
  24. width 100%
  25. &__close
  26. cursor pointer
  27. &__contentname
  28. display flex
  29. align-items baseline
  30. &__icon
  31. font-size 30px
  32. &__title
  33. font-size 20px
  34. color htmlColor
  35. &__form
  36. &__input
  37. width 100%
  38. border 1px solid grey
  39. border-radius 5px
  40. margin-bottom 25px
  41. padding 5px
  42. &__button
  43. display flex
  44. justify-content flex-end
  45. cursor pointer