index.css 942 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. html, body {
  2. width: 100%;
  3. height: 100%;
  4. margin: 0;
  5. padding: 0;
  6. background-color: #f0f0f0;
  7. }
  8. #videos {
  9. position: absolute;
  10. left: 30%;
  11. top: 0;
  12. bottom: 0;
  13. right: 0;
  14. overflow: auto;
  15. }
  16. #videos video {
  17. display: inline-block;
  18. width: 32%;
  19. }
  20. #chat {
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. bottom: 0;
  25. width: 30%;
  26. border: 1px solid #0f0f0f;
  27. }
  28. #chat .msgIpt, #chat .fileIpt {
  29. position: absolute;
  30. left: 0;
  31. width: 80%;
  32. }
  33. #chat .sendBtn, #chat .sendFileBtn {
  34. position: absolute;
  35. left: 80%;
  36. width: 20%;
  37. }
  38. #chat .msgIpt, #chat .sendBtn {
  39. bottom: 0;
  40. }
  41. #chat .fileIpt, #chat .sendFileBtn {
  42. bottom: 30px;
  43. }
  44. #chat .msgs {
  45. padding: 5%;
  46. }
  47. #chat .msgs p {
  48. margin: 0.3em 0;
  49. }
  50. #files {
  51. position: absolute;
  52. bottom: 0;
  53. right: 0;
  54. width: 20%;
  55. }
  56. #files .name {
  57. }
  58. #files .percent {
  59. font-weight: bold;
  60. text-decoration: none
  61. }