Add introducer video to the product page

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
This commit is contained in:
Chris Hill-Scott
2017-01-23 16:25:11 +00:00
parent e50ca05105
commit 97b02edbf9
5 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
/**
* 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%;
}
}

View File

@@ -60,6 +60,7 @@ $path: '/static/images/';
@import 'components/list-entry';
@import 'components/letter';
@import 'components/vendor/breadcrumbs';
@import 'components/vendor/responsive-embed';
@import 'views/job';
@import 'views/edit-template';