-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
44 lines (39 loc) · 703 Bytes
/
popup.css
File metadata and controls
44 lines (39 loc) · 703 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
40
41
42
43
44
body {
font-family: Arial, sans-serif;
margin: 10px;
background-color: #121212;
color: white;
width: 300px;
}
h2 {
text-align: center;
font-size: 18px;
}
#logContainer {
max-height: 300px;
overflow-y: auto;
background: #1e1e1e;
padding: 10px;
border-radius: 8px;
box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
.log-entry {
margin-bottom: 5px;
padding: 5px;
border-bottom: 1px solid #444;
}
button#clearLog {
display: block;
width: 100%;
padding: 8px;
margin-top: 10px;
background: red;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
}
button#clearLog:hover {
background: darkred;
}