-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyles.css
59 lines (51 loc) · 793 Bytes
/
styles.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
body {
background-color: #f2f2f2;
color: #ffffff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
text-align: center;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
}
h1 {
font-size: 32px;
margin-bottom: 20px;
color: #7e037a;
}
video,
canvas {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 100%;
max-height: 100%;
}
video {
border: none;
}
canvas {
border: 5px solid #f78306;
margin-top: 100px;
}
.video-container {
position: relative;
width: 100%;
padding-bottom: 75%;
margin-bottom: 20px;
background-color: #ffffff;
border-radius: 8px;
overflow: hidden;
}
.label {
font-size: 40px;
color: #eb0707;
}
#myAudio {
display: none;
}