Files
RegattenApp/client/scss/components/_iframes.scss
Timon Ostertun 139543199e Initial commit
2020-09-19 12:56:10 +02:00

39 lines
584 B
SCSS

/*Responsive Videos and iframes*/
.max-iframe {
max-height: 200px !important;
height: 300px !important;
padding-bottom: 0px !important;
margin: 0 auto;
}
.responsive-iframe {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
object {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
}