-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgrt-youtube-popup.css
69 lines (58 loc) · 1.25 KB
/
grt-youtube-popup.css
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
.grtyoutube-popup {
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
z-index:99999;
}
.grtyoutube-popup-content {
margin-top:150px;
width:95%;
max-width:850px;
margin-left:auto;
margin-right:auto;
position:relative;
}
.grtyoutube-popup-close {
position:absolute;
top:-30px;
right:0;
color:#FFF;
font-size:25px;
width:17px;
height:17px;
cursor:pointer;
}
.grtyoutube-iframe {
width:100%;
height:480px;
}
@media (max-width:767px) {
.grtyoutube-iframe {
width:100%;
height:350px;
}
}
.grtyoutube-dark-theme{
background: rgba(0,0,0, 0.85);
}
.grtyoutube-dark-theme .grtyoutube-popup-content {
-webkit-box-shadow: 0px 0px 8px 0px rgba(255,255,255,0.4);
-moz-box-shadow: 0px 0px 8px 0px rgba(255,255,255,0.4);
box-shadow: 0px 0px 8px 0px rgba(255,255,255,0.4);
}
.grtyoutube-dark-theme .grtyoutube-popup-close {
background: url('icon-close-white.png') no-repeat;
}
.grtyoutube-light-theme {
background: rgba(255,255,255, 0.85);
}
.grtyoutube-light-theme .grtyoutube-popup-content {
-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
}
.grtyoutube-light-theme .grtyoutube-popup-close {
background: url('icon-close-black.png') no-repeat;
}