_landing-video.scss
1.69 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
67
.landing-video-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);
top: 130px;
left : calc(50% - 30px);
@media screen and (min-width : $bp-large) {
width : 85px;
height : 85px;
top:185px;
//top : calc(50% - 70px);
left : calc(50% - 25px);
}
@media screen and (min-width : $bp-middle) and (max-width:$bp-large) {
width : 85px;
height : 85px;
top:160px;
//top : calc(50% - 70px);
left : calc(50% - 25px);
}
&: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% - 25px);
left : calc(50% - 16px);
}
}
}