Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. #czat_right-box {
  2. z-index: 9999999;
  3. position: fixed;
  4. top: 60%;
  5. transform: translate(0, -47%);
  6. width: 350px;
  7. height: 47%;
  8. background-color: white;
  9. transition: 0.5s;
  10. border: 1px solid black
  11. }
  12.  
  13. @media screen and (min-width: 1280px) {
  14.  
  15. #chat_right-box {
  16. top: 72%;
  17. }
  18.  
  19. }
  20.  
  21. #czat_right-box.open {
  22. left: calc(100% - 350px);
  23. }
  24.  
  25. #czat_right-box.close {
  26. left: 100%
  27. }
  28.  
  29. #czat_right-button {
  30. position: absolute;
  31. font-size: 14px;
  32. color: #fff;
  33. cursor: pointer;
  34. text-align: center;
  35. text-transform: uppercase;
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. transition: 0.5s;
  40. font-weight: bold;
  41. width: 140px;
  42. height: 20px;
  43. padding: 5px;
  44. border: 4px solid black;
  45. }
  46.  
  47. #czat_right-button>div {
  48. transition: 0.5s
  49. }
  50.  
  51. #czat_right-inside {
  52. overflow-y: scroll;
  53. height: 100%;
  54. }
  55.  
  56. //#czat_right-inside>div{padding:5px;font-size:12px;line-height:12px;border-bottom:1px dotted #0066cc}
  57. #czat_right-inside>div {
  58. font-size: 12px;
  59. line-height: 12px;
  60. border-bottom: 1px dotted #0066cc
  61. }
  62.  
  63. #czat_right-inside>div>a {
  64. color: black;
  65. font-weight: bold
  66. }
  67.  
  68. #czat_right-inside>div>div {
  69. color: #6b6b47;
  70. }
  71.  
  72. #czat_right-inside>div>div>a {
  73. color: #6b6b47;
  74. font-weight: bold
  75. }
  76.  
  77. .open>#czat_right-button {
  78. top: -36px;
  79. left: 0;
  80. background-image: linear-gradient(to bottom, #d6453a, #a51b07);
  81. border-radius: 10px 10px 0px 0px
  82. }
  83.  
  84. .open>#czat_right-button>div {
  85. width: 12px;
  86. height: 20px;
  87. }
  88.  
  89. .close>#czat_right-button {
  90. left: -96px;
  91. top: 55%;
  92. transform: rotate(90deg);
  93. background-image: linear-gradient(to right, #d6453a, #a51b07);
  94. border-radius: 0px 0px 10px 10px
  95. }
  96.  
  97. .close>#czat_right-button>div {
  98. width: 13px;
  99. transform: rotate(-90deg)
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement