2
0

app.css 529 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* Enter your classes/style definitions here */
  2. body, html {
  3. background-color: #eee;
  4. /* height: 100%; */
  5. max-width: 1000px;
  6. margin: auto;
  7. }
  8. #videos {
  9. position: relative;
  10. width: 100%;
  11. height: 100%;
  12. margin-left: auto;
  13. margin-right: auto;
  14. }
  15. .subscriber {
  16. position: absolute;
  17. left: 0;
  18. top: 0;
  19. width: 100%;
  20. height: 100%;
  21. z-index: 10;
  22. }
  23. .publisher {
  24. position: absolute;
  25. width: 360px;
  26. height: 240px;
  27. bottom: 10px;
  28. left: 10px;
  29. z-index: 100;
  30. border: 3px solid white;
  31. border-radius: 3px;
  32. }