Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. body{
  2. background-color:rgb(240, 240, 240);
  3. }
  4.  
  5. #ChatBox{
  6. background-color:rgb(73,73,73);
  7. position:absolute;
  8. z-index:100;
  9. width:300px;
  10. height:400px;
  11. right:20px;
  12. bottom:20px;
  13. box-shadow: 10px 10px 5px #888888
  14. }
  15.  
  16. #StoryBox{
  17. background-color:rgb(180,180,180);
  18. position:absolute;
  19. left:10px;
  20. width:280px;
  21. top:10px;
  22. height:295px;
  23. }
  24.  
  25. #MessageBox{
  26. background-color:(180,180,180);
  27. position:absolute;
  28. left:10px;
  29. width:280px;
  30. top:315px;
  31. height:75px;
  32. }
  33.  
  34. #StoryTextBox{
  35. background-color:rgb(245,240,0);
  36. border:none;
  37. position:absolute;
  38. left:10px;
  39. width:260px;
  40. top:10px;
  41. height:275px;
  42. }
  43.  
  44. #MessageTextBox{
  45. background-color:rgb(245,240,0);
  46. border:none;
  47. position:absolute;
  48. left:10px;
  49. width:195px;
  50. top:10px;
  51. height:55px
  52. }
  53.  
  54. #SendButton{
  55. background-color:rgb(240,240,240);
  56. border:none;
  57. position:absolute;
  58. right:10px;
  59. width:55px;
  60. top:10px;
  61. height:55px
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement