A simple file sharing site with an easy to use API and online panel.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

45 行
573B

  1. * {
  2. margin: 0;
  3. }
  4. body {
  5. background: #000;
  6. }
  7. a {
  8. position: absolute;
  9. top: 40px;
  10. left: 48%;
  11. opacity: 0.1;
  12. height: 30px;
  13. width: 30px;
  14. z-index: 100;
  15. cursor: default;
  16. }
  17. a img {
  18. width: 30px;
  19. height: 30px;
  20. }
  21. canvas {
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. }
  26. video {
  27. position: fixed;
  28. top: 50%;
  29. left: 50%;
  30. min-width: 100%;
  31. min-height: 100%;
  32. z-index: -100;
  33. transform: translateX(-50%) translateY(-50%);
  34. background-size: cover;
  35. transition: 1s opacity;
  36. }
  37. #buffer {
  38. display: none;
  39. }