22 lines
294 B
CSS
22 lines
294 B
CSS
|
/**
|
||
|
* @file
|
||
|
* Video file styles.
|
||
|
*
|
||
|
* @see /webform/test_element_media_file
|
||
|
*/
|
||
|
|
||
|
.webform-video-file {
|
||
|
position: relative;
|
||
|
max-width: 640px;
|
||
|
height: 0;
|
||
|
padding-bottom: 56.25%;
|
||
|
}
|
||
|
|
||
|
.webform-video-file video {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|