视频播放器仓库

Speed.css 835B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .component {
  2. position: relative;
  3. float: right;
  4. height: 34px;
  5. }
  6. .component:hover {
  7. background-color: #000;
  8. }
  9. .button {
  10. width: 34px;
  11. height: 34px;
  12. background: none;
  13. border: 0;
  14. color: inherit;
  15. font: inherit;
  16. line-height: normal;
  17. overflow: visible;
  18. padding: 0;
  19. cursor: pointer;
  20. }
  21. .button:focus {
  22. outline: 0;
  23. }
  24. .icon {
  25. padding: 5px;
  26. }
  27. .speedList {
  28. position: absolute;
  29. bottom: 100%;
  30. display: none;
  31. background-color: rgba(0, 0, 0, 0.7);
  32. list-style: none;
  33. padding: 0;
  34. margin: 0;
  35. color: #fff;
  36. }
  37. .component:hover .speedList {
  38. display: block;
  39. }
  40. .speedItem {
  41. padding: 7px;
  42. cursor: pointer;
  43. }
  44. .activeSpeedItem, .speedItem:hover {
  45. background: #000;
  46. }
  47. .activeSpeedItem {
  48. composes: speedItem;
  49. text-decoration: underline;
  50. }