The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
697B

  1. /* This file is dedicated to the public domain; you may do as you wish with it. */
  2. body {
  3. background: black;
  4. color: white;
  5. margin: 0px;
  6. }
  7. #playerheader {
  8. position: absolute;
  9. left: 0px;
  10. right: 0px;
  11. top: 0px;
  12. height: 24px;
  13. padding: 0px 4px;
  14. text-align: right;
  15. font-size: 16px;
  16. }
  17. #playerheader a {
  18. color: white;
  19. text-decoration: none;
  20. }
  21. span.settings div {
  22. background: black;
  23. z-index: 1;
  24. padding-right: 4px;
  25. }
  26. #playercontent {
  27. position: absolute;
  28. left: 0px;
  29. right: 0px;
  30. top: 24px;
  31. bottom: 0px;
  32. }
  33. video {
  34. display: block;
  35. margin-left: auto;
  36. margin-right: auto;
  37. max-width: 100%;
  38. max-height: 100%;
  39. }