style.css 658 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. html, body {
  2. height: 100%;
  3. }
  4. html {
  5. overflow-y: scroll;
  6. }
  7. body {
  8. padding: 0;
  9. margin: 0;
  10. }
  11. #videos {
  12. position: absolute;
  13. top: 0px;
  14. left: 0px;
  15. right: 0px;
  16. bottom: 0px;
  17. background-color: #F0F6FB;
  18. }
  19. #chatbox {
  20. position: absolute;
  21. height: 180px;
  22. right: 20px;
  23. left: 20px;
  24. bottom: 0px;
  25. }
  26. #chatinput {
  27. width: 100%;
  28. padding-top: 7px;
  29. padding-bottom: 7px;
  30. border-radius: 8px;
  31. border-style:solid;
  32. border-width:1px;
  33. }
  34. #messages {
  35. overflow: scroll;
  36. height: 100px;
  37. width: 100%;
  38. background-color: white;
  39. border-radius: 8px;
  40. border-style:solid;
  41. border-width:1px;
  42. }
  43. .flip {
  44. -webkit-transform: rotateY(180deg);
  45. }