mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 11:51:05 -05:00
It’s always been the plan to put this video on the product page. Just
getting round to it now.
Watch the video here: https://www.youtube.com/watch?v=i2a2jiwYTd4
Uses the CSS developed by the service manual team, taken from here:
a5c613f07b/source/stylesheets/modules/_responsive-embed.scss
60 lines
1.2 KiB
SCSS
60 lines
1.2 KiB
SCSS
/**
|
|
* Responsive Embed Component
|
|
*
|
|
* Notes:
|
|
*
|
|
* - Ensure you use either responsive-embed--16by9 or responsive-embed--4by3
|
|
* depending on the aspect ratio of your embed.
|
|
* - Credit: Nicolas Gallagher and SUIT CSS.
|
|
*
|
|
* Example Usage:
|
|
*
|
|
* <div class="responsive-embed responsive-embed--4by3 responsive-embed--bordered">
|
|
* <div class="responsive-embed__wrapper">
|
|
* <iframe width="560" height="315" src="https://www.youtube.com/watch?v=dQw4w9WgXcQ" frameborder="0" allowfullscreen=""></iframe>
|
|
* </div>
|
|
* </div>
|
|
*/
|
|
|
|
.responsive-embed {
|
|
.responsive-embed__wrapper {
|
|
position: relative;
|
|
display: block;
|
|
height: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.responsive-embed__item,
|
|
iframe,
|
|
embed,
|
|
object,
|
|
video {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
.responsive-embed--bordered {
|
|
padding: 5px;
|
|
outline: 1px solid $border-colour;
|
|
}
|
|
|
|
// Modifier class for 16:9 aspect ratio
|
|
.responsive-embed--16by9 {
|
|
.responsive-embed__wrapper {
|
|
padding-bottom: 56.25%;
|
|
}
|
|
}
|
|
|
|
// Modifier class for 4:3 aspect ratio
|
|
.responsive-embed--4by3 {
|
|
.responsive-embed__wrapper {
|
|
padding-bottom: 75%;
|
|
}
|
|
} |