Timeline.styl 2.7KB

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