视频播放器仓库

Overlay.css 624B

12345678910111213141516171819202122232425262728293031323334353637
  1. .component {
  2. position: absolute;
  3. top: 0;
  4. right: 0;
  5. bottom: 0;
  6. left: 0;
  7. height: 100%;
  8. width: 100%;
  9. color: #fff;
  10. text-align: center;
  11. cursor: pointer;
  12. background-color: rgba(0,0,0,0);
  13. }
  14. .inner {
  15. display: inline-block;
  16. position: absolute;
  17. top: 50%;
  18. right: 0;
  19. left: 50%;
  20. width: 60px;
  21. height: 60px;
  22. transform: translateY(-50%);
  23. margin-left: -30px;
  24. background-color: rgba(0,0,0,0.7);
  25. border-radius: 10px;
  26. }
  27. .icon {
  28. position: absolute;
  29. top: 50%;
  30. right: 0;
  31. left: 50%;
  32. margin-left: -20px;
  33. transform: translateY(-50%);
  34. }