Hello.
My application has a page with a video player that plays a file hosted on my hosting. This is a standard HTML5 video player. I want to style it with CSS so that it has all controls disabled but has a big play button in the center.
I managed to remove all elements using the code:
< style >
video::-webkit-media-controls-panel {
display: none;
}
< /style >
Now I need to work with the Play button. I added a button image to the Bubble file manager. Pseudo-element selectors are responsible for its display in the player -
video::-webkit-media-controls-play-button
What CSS code should I write for this selector (with a link to the button and its placement in the center of the player)?
