Timeline.styl 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. @import '../../css/Variable.styl'
  2. .timeline
  3. display flex
  4. flex-direction column
  5. margin 10px
  6. border-radius 10px
  7. height 100%
  8. &__header
  9. flex 0 1 auto
  10. border-radius 10px 10px 0 0
  11. padding 15px
  12. text-align center
  13. font-size 20px
  14. color darkGrey
  15. background-color grey-hover
  16. &__messagelist
  17. flex 1 1 auto
  18. margin-bottom 0
  19. padding-left 0
  20. border-bottom 1px solid grey
  21. background-color off-white
  22. overflow-Y auto
  23. list-style none
  24. &__item
  25. padding 0 25px 20px 35px
  26. &__avatar
  27. position relative
  28. top 40px
  29. left -20px
  30. & > img
  31. width 45px
  32. height 45px
  33. border-radius 25px
  34. &__createhour
  35. margin-left 35px
  36. opacity 0.7
  37. font-size 14px
  38. &__content
  39. display inline-block
  40. border 1px solid grey
  41. border-radius 5px
  42. padding 15px
  43. background-color off-white
  44. font-size 15px
  45. &__version
  46. display flex
  47. justify-content space-between
  48. margin-top 40px
  49. padding 10px 15px
  50. width 100%
  51. background-color lightGrey
  52. &__btn
  53. padding 5px 25px
  54. border-radius 5px
  55. width 145px
  56. color white
  57. font-size 17px
  58. & > i
  59. margin-right 10px
  60. color darkGrey
  61. font-size 22px
  62. &__date
  63. color fontColor
  64. font-size 17px
  65. margin auto 0
  66. &__texteditor
  67. flex 0 1 auto
  68. padding 2px
  69. &__simpletext
  70. display none
  71. width 70%
  72. &__icon
  73. cursor pointer
  74. &__wysiwyg
  75. display block
  76. & > textarea
  77. width 100%
  78. height 130px
  79. &__submit
  80. margin 10px 0
  81. &__btn
  82. display flex
  83. cursor pointer
  84. &:hover , &:focus
  85. box-shadow shadow-all-btn
  86. &__icon
  87. margin-left 10px
  88. .received
  89. text-align right
  90. .timeline__messagelist__item
  91. &__avatar
  92. left 20px
  93. &__createhour
  94. margin-left 0
  95. margin-right 35px
  96. &__content
  97. color white
  98. /**** MEDIA 576px & 1199px ****/
  99. @media (min-width: min-sm) and (max-width: max-lg)
  100. .timeline
  101. &__messagelist
  102. min-height 350px
  103. max-height 700px
  104. &__item
  105. margin-right 55px
  106. /**** MEDIA 576px & 767px ****/
  107. @media (min-width: min-sm) and (max-width: max-sm)
  108. .timeline__messagelist__item
  109. margin-right 35px
  110. /**** MEDIA 575px ****/
  111. @media (max-width: max-xs)
  112. .timeline__texteditor
  113. &__simpletext
  114. margin-left 0
  115. width 65%
  116. &__submit
  117. margin-left 10px