Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2018
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.76 KB | None | 0 0
  1. video#vid {
  2.     width: 640px;
  3.     height: 480px;
  4.  
  5. }
  6.  
  7. video::-webkit-media-controls {
  8.     display:none !important;
  9. }
  10.  
  11. video::-webkit-media-controls-enclosure {
  12.   display:none !important;
  13. }
  14.  
  15. div#playercontrolls {
  16.     background: #333; /* set color later */
  17.     padding: 10px;
  18. }
  19.  
  20. div#playerContainer {
  21.  
  22. }
  23.  
  24. span#slider {
  25.     margin-top: -6px;
  26. }
  27.  
  28. .white-text {
  29.     text-color: white;
  30. }
  31.  
  32. input#seekslider {
  33.     width: 90vh;
  34. }
  35.  
  36. input#volumeslider {
  37.     width: 20vh;
  38. }
  39.  
  40. input[type='range'] {
  41.     -webkit-appearance: none !important;
  42.     background: #000;
  43.     border: #666 1px solid;
  44.     height: 6px;
  45. }
  46.  
  47. input[type='range']::-webkit-slider-thumb {
  48.     -webkit-appearance: none !important;
  49.     background: #FFF;
  50.     height: 15px;
  51.     width: 15px;
  52.     border-radius: 75%;
  53.     cursor:pointer;
  54. }
  55. input::-moz-range-track {
  56.     -webkit-appearance: none !important;
  57.     background: #000;
  58.     border: #666 1px solid;
  59.     height: 6px;
  60. }
  61.  
  62. input::-moz-range-track::-webkit-slider-thumb {
  63.     -webkit-appearance: none !important;
  64.     background: #FFF;
  65.     height: 15px;
  66.     width: 15px;
  67.     border-radius: 75%;
  68.     cursor:pointer;
  69. }
  70.  
  71. input[type=range]:focus {
  72.     outline: none;
  73. }
  74.  
  75. input::-moz-range-track:focus {
  76.     outline: none;
  77. }
  78.  
  79.  
  80. input#volumeslider {
  81.     background: linear-gradient(to right, black , grey);
  82. }
  83.  
  84. button.nokit {
  85.     -webkit-appearance: none !important;
  86.     background: none !important;
  87.     color: inherit;
  88.     border: none;
  89.     padding: 0! important;
  90.     font: inherit;
  91.     cursor: pointer;
  92.     outline: inherit !important;
  93.     opacity:0.7;
  94. }
  95. button.nokit:hover{
  96.     opacity:1;
  97. }
  98.  
  99. ::-webkit-media-controls {
  100.   display:none !important;
  101. }
  102.  
  103. ::-webkit-media-controls-enclosure {
  104.   display:none !important;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement