_chat.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #chat-wrapper {
  2. display: none;
  3. position: absolute;
  4. width: 270px;
  5. right: 10px;
  6. top: 99px;
  7. border: 4px solid #fff;
  8. background: lighten($grey, 5%);
  9. h4 {
  10. font-family: 'Cherry Swash';
  11. font-size: 1.225rem;
  12. height: 3em;
  13. line-height: 3em;
  14. margin: 5px 5%;
  15. text-align: center;
  16. color: $dark-purple;
  17. }
  18. a.close {
  19. position: absolute;
  20. top: 0;
  21. right: 0;
  22. background: $dark-purple;
  23. color: #fff;
  24. font-size: 1.125rem;
  25. padding: 0 7px;
  26. text-decoration: none;
  27. font-weight: 600;
  28. margin: 1em 5%;
  29. cursor: pointer;
  30. &:hover {
  31. text-decoration: none;
  32. background: lighten($dark-purple, 5%);
  33. }
  34. }
  35. > span {
  36. font-size: .9rem;
  37. margin: 5px 5%;
  38. display: block;
  39. }
  40. }
  41. #chat-list {
  42. position: relative;
  43. top: 0;
  44. max-height: 300px;
  45. width: 100%;
  46. overflow-y: scroll;
  47. list-style-type: none;
  48. li {
  49. font-size: .9rem;
  50. padding: 10px;
  51. margin: 5px auto;
  52. width: 90%;
  53. border-radius: 5px;
  54. position: relative;
  55. &::before {
  56. position: absolute;
  57. content: '';
  58. top: 10px;
  59. }
  60. &.black {
  61. background: #424242;
  62. color: #fff;
  63. }
  64. &.white {
  65. background: #fff;
  66. color: #444;
  67. }
  68. &.left::before {
  69. left: 0;
  70. margin-left: -7px;
  71. border-bottom: 7px solid transparent;
  72. border-top: 7px solid transparent;
  73. }
  74. &.black.left::before {
  75. border-right: 7px solid #424242;
  76. }
  77. &.white.left::before {
  78. border-right: 7px solid #fff;
  79. }
  80. &.right::before {
  81. right: 0;
  82. margin-right: -7px;
  83. border-bottom: 7px solid transparent;
  84. border-top: 7px solid transparent;
  85. }
  86. &.black.right::before {
  87. border-left: 7px solid #424242;
  88. }
  89. &.white.right::before {
  90. border-left: 7px solid #fff;
  91. }
  92. }
  93. }
  94. #chat-form {
  95. input {
  96. width: 100%;
  97. padding: 15px 10px;
  98. border: none;
  99. outline: none;
  100. font-size: .9rem;
  101. border: 4px solid lighten($grey, 5%);
  102. &.black {
  103. background: #444;
  104. color: #fff;
  105. }
  106. &.white {
  107. background: #fff;
  108. color: #444;
  109. }
  110. }
  111. }
  112. #chat-icon {
  113. text-decoration: none;
  114. color: darken($blue, 10%);
  115. margin-right: 1em;
  116. line-height: 50px;
  117. float: right !important;
  118. cursor: pointer;
  119. font-weight: 600;
  120. &:hover{
  121. color: darken($blue, 5%);
  122. .new-message{
  123. color: $red;
  124. }
  125. }
  126. img{
  127. vertical-align: middle;
  128. }
  129. .new-message{
  130. color: $red;
  131. padding-right: 1em;
  132. }
  133. }