Advertisement
koki2000

chat css

Aug 10th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.64 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0
  4. }
  5.  
  6. body {
  7.     background: #2ecc71;
  8.     font-family:Arial, Helvetica, sans-serif;
  9. }
  10.  
  11. .container {
  12.     width: 100px;
  13.     height: 1000px;
  14.     background: yellow;
  15.     margin-left: auto;
  16.     margin-right: auto;
  17.     position: relative;
  18. }
  19.  
  20. .chatbox_head{
  21.     width: 250px;
  22.     background: #e74c3c;
  23.     color: white;
  24.     font-weight: bold;
  25.     position: fixed;
  26.     right: 15px;
  27.     bottom: 0px;
  28. }
  29.  
  30. .chatbox_body {
  31.     width: 250px;
  32.     max-height: 400px;
  33.     background: white;
  34.     color: black;
  35.     position: relative;
  36.     overflow: scroll;
  37. }
  38.  
  39. .messbox {
  40.     width: 200px;
  41.     height: 250px;
  42.     background: gray;
  43.     position: fixed;
  44.     right: 280px;
  45.     bottom: 0px;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement