-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
62 lines (53 loc) · 992 Bytes
/
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
.label {
display: inline-block;
line-height: 1;
vertical-align: baseline;
margin: 0em 0.16em;
background-color: ghostwhite;
padding: 0.5833em 0.833em;
color: rgba(0, 0, 0, 0.6);
text-transform: none;
font-weight: bold;
border: 0px solid transparent;
border-radius: 0.3rem;
transition: background 200ms ease;
}
h1 {
font-size: 1.2em;
}
hr {
margin: 0.5em auto;
border-style:solid;
border-width: 0.5px;
border-color: darkgray;
}
#log-header {
font-weight: bold;
}
.labels {
background-color: #eaeaea;
padding: 0.3em;
border-radius: 0.3rem;
}
.error {
background-color: #d46c6c;
}
.reset-link, .log-link {
color: blue;
}
.message {
margin-top: 5px;
font-family: monospace;
font-size: 1.3em;
}
#messages {
margin-left: 10px;
padding-right: 10px;
overflow-y: scroll;
height: 400px;
}
#intro {
padding: 0.7em;
line-height: 140%;
color: rgb( 95, 99, 104 );
}