2014-03-07 02:18:13 -05:00
|
|
|
//
|
2015-04-18 14:38:47 -04:00
|
|
|
// Responsive embed
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2014-03-07 02:18:13 -05:00
|
|
|
// 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-06-18 19:01:52 -04:00
|
|
|
// Modifier class for 21:9 aspect ratio
|
|
|
|
.embed-responsive-21by9 {
|
2015-06-18 19:03:48 -04:00
|
|
|
padding-bottom: percentage(9 / 21);
|
2015-06-18 19:01:52 -04:00
|
|
|
}
|
|
|
|
|
2015-02-02 12:26:30 -05:00
|
|
|
// Modifier class for 16:9 aspect ratio
|
|
|
|
.embed-responsive-16by9 {
|
2015-06-18 19:03:48 -04:00
|
|
|
padding-bottom: percentage(9 / 16);
|
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 4:3 aspect ratio
|
|
|
|
.embed-responsive-4by3 {
|
2015-06-18 19:03:48 -04:00
|
|
|
padding-bottom: percentage(3 / 4);
|
2014-03-07 02:18:13 -05:00
|
|
|
}
|