forked from normful/Chrome-Audio-Capturer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
complete.css
71 lines (60 loc) · 974 Bytes
/
complete.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
68
69
70
71
.header {
display: flex;
align-items: center;
padding-bottom: 15px;
padding-left: 20px;
border-bottom: 2px solid darkred;
}
.header-title {
padding: 0 5px;
}
.progress {
margin: 50px 20px 10px 20px;
font-size: 16px;
display: flex;
}
.notes {
margin: 0 20px;
}
#progressContainer {
margin-left: 5px;
width: 500px;
height: 18px;
background-color: lavenderblush;
}
#encodeProgress {
height: 100%;
width: 0%;
background-color: darkred;
}
#saveCapture {
display: none;
}
.buttonContainer {
display: flex;
}
#status {
margin-top: 30px;
margin-left: 20px;
font-size: 14px;
}
.button {
padding: 10px;
border: 2px solid darkred;
font-size: 16px;
background-color: lavenderblush;
font-weight: bold;
margin: 10px 20px;
cursor: pointer;
border-radius: 5px;
}
.button:hover {
color: red;
background-color: darkred;
}
#review {
color: blue;
display: inline;
text-decoration: underline;
cursor: pointer;
}