-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube-embed.css
59 lines (59 loc) · 1003 Bytes
/
youtube-embed.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
.yt-wrapper {
display: none;
position: relative;
margin: auto;
max-width: 720px;
padding-bottom: 56.25%;
}
.yt {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
max-height: 82vh;
border: 0;
}
#expand-icon {
width: 2.5rem;
position: fixed;
bottom: 5rem;
right: .2rem;
padding:1rem 0;
background-image:url(../img/expand-icon.png);
background-repeat:no-repeat;
background-size: cover;
background-position:center;
}
#now-playing-text {
font-size: 70%;
opacity: .55;
position: fixed;
bottom: 7rem;
right: 0;
transition: all .45s;
}
#now-playing-text:hover {
opacity: .75;
}
#remote-control {
opacity: .7;
position: fixed;
bottom: 5rem;
right: .2rem;
display: flex;
flex-direction: column;
align-items: flex-end;
padding: 1.5rem 0 .5rem 1rem;
transition: all .45s;
}
#remote-control:hover {
opacity: .9;
}
#remote-control button {
margin-right: .2rem;
}
#remote-control a {
margin-right: 0;
padding-right: 0;
}