Advertisement
phpface

Untitled

Aug 27th, 2022
1,226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. add_action( 'embed_footer', function(){
  2.     if( is_singular( 'video' ) ):
  3.     ?>
  4.     <style type="text/css">
  5.         .vjs-theme-forest {
  6.             --vjs-theme-forest--primary: #ce1212!important;
  7.         }
  8.          
  9.         .vjs-theme-forest .vjs-big-play-button{
  10.             filter: invert(60%) sepia(60%) saturate(5029%) hue-rotate(341deg) brightness(84%) contrast(140%);
  11.         }        
  12.     </style>
  13.     <?php
  14.     endif;
  15. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement