@@ -460,10 +460,10 @@ article {
460460}
461461
462462article img ,
463- article video {
463+ article video : not (.video-player video ),
464+ .video-player {
464465 vertical-align : top;
465466 margin : var (--ifm-leading ) 0 ;
466- border-radius : var (--ifm-pre-border-radius );
467467 box-shadow :
468468 0 0 0 1px rgba (0 , 0 , 0 , 0.05 ),
469469 var (--ifm-global-shadow-lw );
@@ -492,18 +492,54 @@ article video[data-landscape] {
492492 }
493493}
494494
495- article video : has (+ video ) {
495+ article video : not (.video-player video ): has (+ video ),
496+ article .video-player : has (+ .video-player ) {
496497 margin-right : var (--ifm-leading );
497498}
498499
499- article p ~ video {
500+ article p ~ video : not (.video-player video ),
501+ article p ~ .video-player {
500502 margin-top : 0 ;
501503}
502504
503505samp {
504506 display : none;
505507}
506508
509+ .video-player {
510+ position : relative;
511+ display : inline-block;
512+ }
513+
514+ .video-player-icon {
515+ display : flex;
516+ align-items : center;
517+ justify-content : center;
518+ position : absolute;
519+ top : 0 ;
520+ left : 0 ;
521+ right : 0 ;
522+ bottom : 0 ;
523+ background : rgba (0 , 0 , 0 , 0.3 );
524+ transition : 300ms opacity ease;
525+ opacity : 0 ;
526+ }
527+
528+ .video-player-icon ::after {
529+ content : '' ;
530+ height : 72px ;
531+ aspect-ratio : 1 / 1 ;
532+ background-image : url ("data:image/svg+xml,<svg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'><defs><mask id='pause-mask'><circle cx='9' cy='9' r='9' fill='white'/><rect x='6' y='6' width='2' height='6' fill='black'/><rect x='10' y='6' width='2' height='6' fill='black'/></mask></defs><circle cx='9' cy='9' r='9' fill='white' mask='url(%23pause-mask)'/></svg>" );
533+ }
534+
535+ .video-player .paused .video-player-icon ::after {
536+ background-image : url ("data:image/svg+xml,<svg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'><defs><mask id='play-mask'><circle cx='9' cy='9' r='9' fill='white'/><polygon points='7.5,6 7.5,12 12.5,9' fill='black'/></mask></defs><circle cx='9' cy='9' r='9' fill='white' mask='url(%23play-mask)'/></svg>" );
537+ }
538+
539+ .video-player : is (: hover , : focus , .paused ) .video-player-icon {
540+ opacity : 1 ;
541+ }
542+
507543.theme-code-block {
508544 box-shadow : none !important ;
509545}
0 commit comments