_home-video.scss
1.61 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.video-play-button {
display : block;
-moz-border-radius : 999px;
-webkit-border-radius : 999px;
border-radius : 999px;
background : #ffffff;
opacity : .5;
position : absolute;
z-index : 99999;
width : 60px;
height : 60px;
-webkit-transition : all 0.5s linear;
-moz-transition : all 0.5s linear;
-o-transition : all 0.5s linear;
transition : all 0.5s linear;
top : calc(50% - 20px);
left : calc(50% + 55px);
@media screen and (min-width : $bp-middle) {
width : 100px;
height : 100px;
top : calc(50% - 35px);
left : calc(50% - 25px);
}
&.page-video-button {
display : none;
@media screen and (min-width : 1080px) {
left:calc(50% - -100px);
display : block;
}
}
&:hover {
opacity : 1;
}
.play-arrow {
font-size : 0;
display : block;
position : absolute;
top : calc(50% - 15px);
left : calc(50% - 10px);
width : 0;
height : 0;
border-width : 15px 0 15px 23.3px;
border-style : solid;
border-color : transparent transparent transparent #6d6e70;
@media screen and (min-width : $bp-middle) {
border-width : 25px 0 25px 43.3px;
top : calc(50% - 22px);
left : calc(50% - 16px);
}
}
}