sphinx-contrib / video

A sphinx plugin that enables embedding of HTML5 videos
https://sphinxcontrib-video.readthedocs.io
Apache License 2.0
46 stars 30 forks source link

Auto resize videos? #44

Open Elodie-Praxinos opened 2 months ago

Elodie-Praxinos commented 2 months ago

I could not find a way to make the video resize automatically, depending on the display of the guide. Is it possible?

sciencewhiz commented 2 weeks ago

We added the following to our CSS to resize videos that are wider then the screen

/*
* Prevent video containers from spilling over the edges of the main panel.
* This matches the built-in style for `.rst-content img`
*/
.rst-content video {
    max-width: 100%;
    height: auto;
}
Elodie-Praxinos commented 2 weeks ago

Thanks! I'll try this!