-
Notifications
You must be signed in to change notification settings - Fork 7
/
_youtube_video.scss
50 lines (43 loc) · 1012 Bytes
/
_youtube_video.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* @fileoverview
* Componente para incrustar un video de YouTube en nuestro sitio web cuando la resolución es mayor a 64em (1024px), cuando es menor se agrega un enlace al video
* Dependencias: font-awesome
*
* @param {String} id, id del video de YouTube, se define en el archivo pug
* @param {String} $video-width, anchura del contenedor del video, se define en el archivo scss
*
* @returns {void} no retorna nada
*
* @author Jonathan MirCha <[email protected]>
* @version 1.0.0
*/
$video-width: 100%;
.Youtube {
width: $video-width;
height: auto;
display: block;
margin: auto;
&-wrapper {
position: relative;
height: auto;
@media screen and (min-width: 64em) {
padding-bottom: 56.25%; /* 16:9 */
}
}
& iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
& a {
display: block;
margin: 2rem auto;
text: {
align: center;
decoration: none;
}
font-size: 3.5vw;
}
}