2014-03-07 08:18:13 +01:00
|
|
|
//
|
2015-04-18 20:38:47 +02:00
|
|
|
// Responsive embed
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2014-03-07 08:18:13 +01: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 22:45:28 +02:00
|
|
|
object,
|
|
|
|
video {
|
2014-03-07 08:18:13 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2014-12-11 21:05:29 +01:00
|
|
|
left: 0;
|
2014-03-07 08:18:13 +01:00
|
|
|
width: 100%;
|
2014-12-11 21:05:29 +01:00
|
|
|
height: 100%;
|
2014-03-07 08:18:13 +01:00
|
|
|
border: 0;
|
|
|
|
}
|
2015-02-02 18:26:30 +01:00
|
|
|
}
|
2014-03-07 08:18:13 +01:00
|
|
|
|
2015-06-19 01:01:52 +02:00
|
|
|
// Modifier class for 21:9 aspect ratio
|
|
|
|
.embed-responsive-21by9 {
|
2015-06-19 01:03:48 +02:00
|
|
|
padding-bottom: percentage(9 / 21);
|
2015-06-19 01:01:52 +02:00
|
|
|
}
|
|
|
|
|
2015-02-02 18:26:30 +01:00
|
|
|
// Modifier class for 16:9 aspect ratio
|
|
|
|
.embed-responsive-16by9 {
|
2015-06-19 01:03:48 +02:00
|
|
|
padding-bottom: percentage(9 / 16);
|
2015-02-02 18:26:30 +01:00
|
|
|
}
|
2014-03-07 08:18:13 +01:00
|
|
|
|
2015-02-02 18:26:30 +01:00
|
|
|
// Modifier class for 4:3 aspect ratio
|
|
|
|
.embed-responsive-4by3 {
|
2015-06-19 01:03:48 +02:00
|
|
|
padding-bottom: percentage(3 / 4);
|
2014-03-07 08:18:13 +01:00
|
|
|
}
|