chat.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .bubbleDiv{
  2. width: 100%;
  3. height: 500px;
  4. margin: 0px;
  5. padding: 0px;
  6. }
  7. .bubbleItem{
  8. width: 100%;
  9. list-style:none;
  10. margin: 0px;
  11. padding: 5px;
  12. }
  13. .bubble{
  14. position: relative;
  15. line-height: 30px;
  16. border-radius: 7px;
  17. display: inline-block;
  18. padding-left: 10px;
  19. padding-right: 10px;
  20. }
  21. .leftBubble{
  22. position: relative;
  23. margin-left: 15px;
  24. border: 1px solid #00b6b6;
  25. background-color: #f8fdfc;
  26. }
  27. .leftBubble .bottomLevel{
  28. position: absolute;
  29. top: 10px;
  30. left: -10px;
  31. border-top: 10px solid #00b6b6;
  32. border-left: 10px solid transparent;
  33. }
  34. .leftBubble .topLevel{
  35. position: absolute;
  36. top: 11px;
  37. left: -8px;
  38. border-top: 10px solid #f8fdfc;
  39. border-left: 10px solid transparent;
  40. z-index: 100;
  41. }
  42. .rightBubble{
  43. position: relative;
  44. float: right;
  45. margin-right:15px;
  46. border: 1px solid #00b6b6;
  47. background-color: #f8fdfc;
  48. }
  49. .rightBubble .bottomLevel{
  50. position: absolute;
  51. top: 10px;
  52. right: -10px;
  53. border-top: 10px solid #00b6b6;
  54. border-right: 10px solid transparent;
  55. }
  56. .rightBubble .topLevel{
  57. position: absolute;
  58. top: 11px;
  59. right: -8px;
  60. border-top: 10px solid #f8fdfc;
  61. border-right: 10px solid transparent;
  62. z-index: 100;
  63. }
  64. .clearfix:after {
  65. visibility: hidden;
  66. display: block;
  67. font-size: 0;
  68. content: " ";
  69. clear: both;
  70. height: 0;
  71. }
  72. .overflow-3::-webkit-scrollbar-track {
  73. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.0);
  74. }
  75. .overflow-3::-webkit-scrollbar {
  76. width: 6px;
  77. }
  78. .overflow-3::-webkit-scrollbar-thumb {
  79. background-color:skyblue;
  80. border-radius : 10px;
  81. }