2014-03-07 02:18:13 -05:00
|
|
|
// Embeds responsive
|
|
|
|
//
|
|
|
|
// Credit: Nicolas Gallagher and SUIT CSS.
|
|
|
|
|
|
|
|
.embed-responsive {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
height: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.embed-responsive-item,
|
|
|
|
iframe,
|
|
|
|
embed,
|
2014-09-26 16:45:28 -04:00
|
|
|
object,
|
|
|
|
video {
|
2014-03-07 02:18:13 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
left: 0;
|
2014-03-07 02:18:13 -05:00
|
|
|
width: 100%;
|
2014-12-11 15:05:29 -05:00
|
|
|
height: 100%;
|
2014-03-07 02:18:13 -05:00
|
|
|
border: 0;
|
|
|
|
}
|
2015-02-02 12:26:30 -05:00
|
|
|
}
|
2014-03-07 02:18:13 -05:00
|
|
|
|
2015-02-02 12:26:30 -05:00
|
|
|
// Modifier class for 16:9 aspect ratio
|
|
|
|
.embed-responsive-16by9 {
|
|
|
|
padding-bottom: 56.25%;
|
|
|
|
}
|
2014-03-07 02:18:13 -05:00
|
|
|
|
2015-02-02 12:26:30 -05:00
|
|
|
// Modifier class for 4:3 aspect ratio
|
|
|
|
.embed-responsive-4by3 {
|
|
|
|
padding-bottom: 75%;
|
2014-03-07 02:18:13 -05:00
|
|
|
}
|