forked from normful/Chrome-Audio-Capturer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.css
90 lines (77 loc) · 1.26 KB
/
popup.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
margin: 10px 15px 5px 15px;
background-color: #2F6AA2;
color: white;
}
body, h2 {
font-family: Ubuntu, sans-serif;
}
#status, #timeRem {
margin: 10px auto;
text-align: center;
font-size: 20px;
white-space: nowrap;
}
.header {
display: flex;
align-items: center;
padding-bottom: 15px;
border-bottom: 2px solid #2F6AA2;
white-space: nowrap;
}
.header img {
height: 64px;
margin: 0 20px 0 0;
}
ul {
font-size: 16px;
font-weight: bold;
list-style: none;
padding: 0;
}
li {
font-size: 14px;
font-weight: normal;
white-space: nowrap;
margin: 0 0 0 5px;
}
.extra {
font-family: sans-serif;
white-space: nowrap;
font-style: italic;
margin: 3px;
}
.links {
display: flex;
align-items: center;
justify-content: space-between;
font-family: sans-serif;
}
.links p {
color: blue;
text-decoration: underline;
cursor: pointer;
}
.buttonContainer {
display: flex;
justify-content: space-around;
}
.button {
display: none;
text-align: center;
padding: 10px;
border: 2px solid #123251;
font-size: 16px;
font-weight: bold;
cursor: pointer;
background-color: #123251;
border-radius: 5px;
}
.button:hover {
border-color: #FFF;
}
.notes {
padding: 10px;
font-size: 12px;
white-space: pre;
}