-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraw.css
57 lines (52 loc) · 949 Bytes
/
draw.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
/* drawing youtube play button*/
.button_1, .button_2, .button_3 {
background-color: rgb(245, 21, 21);
height: 200px;
width: 400px;
border-radius: 20%;
border: solid rgb(245, 21, 21) 20px;
}
.pause_1 {
background-color: rgb(253, 253, 253);
height: 50px;
width: 20px;
position: fixed;
top: 100px;
left: 200px;
}
/* other stages of playing videos */
.pause_2 {
background-color: rgb(253, 253, 253);
height: 50px;
width: 20px;
position: fixed;
top: 100px;
left: 250px;
}
.button_2 {
position: fixed;
top: 0;
left: 600px;
}
.play {
width: 0;
height: 0;
border-left: 70px solid rgb(255, 254, 254);
border-top: 40px solid transparent;
border-bottom: 40px solid transparent;
position: fixed;
top: 75px;
left: 800px;
}
.button_3 {
position: fixed;
top: 300px;
}
.stop {
background-color: rgb(250, 249, 249);
height: 60px;
width: 60px;
position: relative;
top: 35%;
left: 170px;
}