style.css 460 B

123456789101112131415161718192021222324252627282930313233343536373839
  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: 0;
  14. left: 0;
  15. bottom: 0;
  16. right: 200px;
  17. }
  18. #chatbox {
  19. position: absolute;
  20. top: 0;
  21. width: 200px;
  22. right: 0;
  23. bottom: 0;
  24. }
  25. #chatinput {
  26. display: block;
  27. border: 1px solid black;
  28. -moz-box-sizing: border-box;
  29. -webkit-box-sizing: border-box;
  30. box-sizing: border-box;
  31. width: 100%;
  32. padding: 7px 3px;
  33. }