-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrecorder.css
37 lines (34 loc) · 849 Bytes
/
recorder.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
video#recordPlayback {
position: absolute;
top: 20px;
max-width: 50%;
height: auto;
z-index: 21;
}
div#recordControls {
position: absolute;
display: inline-flex;
z-index: 20;
top: 0;
left: 25px;
}
.recordBtn:active {
background-color: rgba(255,255,255, 0.4);
border-radius: 4px;
border:1px solid rgba(255,255,255, 0.6);
cursor:pointer;
color: #3c3c3c;
padding:2px 4px;
margin: 2px;
font-weight: bold;
}
.recordBtn:hover {
background-color:rgba(255,255,255, 0.6);
}
.recordBtn:disabled {
position:relative;
top:1px;
background-color:rgba(255,255,255, 0.2);
border:1px solid rgba(255,255,255, 0.3);
color: #9a9a9a;
}