-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.css
More file actions
39 lines (33 loc) · 735 Bytes
/
popup.css
File metadata and controls
39 lines (33 loc) · 735 Bytes
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
.container {
font-family: system-ui, Arial, sans-serif;
padding: 12px;
width: 420px;
}
h1 {
font-size: 16px;
margin: 0 0 8px 0;
}
.status-section p {
margin: 8px 0;
}
.status-disconnected { color: #b00; font-weight: 600 }
.status-connected { color: #080; font-weight: 700 }
.sample-section textarea {
width: 100%;
box-sizing: border-box;
font-family: monospace;
}
.log-box {
max-height: 240px;
overflow: auto;
background: #f7f7f7;
padding: 8px;
border-radius: 4px;
font-family: monospace;
font-size: 12px;
}
.log-line { margin: 6px 0; white-space: pre-wrap }
.log-info { color: #333; }
.log-error { color: #d00; font-weight: bold; }
.log-success { color: #070; }
.log-warning { color: #850; }