-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
54 lines (54 loc) · 859 Bytes
/
Copy pathoptions.css
File metadata and controls
54 lines (54 loc) · 859 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
45
46
47
48
49
50
51
52
53
54
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 20px;
background-color: #f4f7fa;
color: #333;
}
h1 {
font-size: 1.8em;
color: #2c3e50;
}
section {
margin-bottom: 20px;
}
h2 {
font-size: 1.3em;
color: #34495e;
}
button {
padding: 10px;
background-color: #3498db;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
}
button:hover {
background-color: #2980b9;
}
label {
display: block;
margin-bottom: 10px;
}
input[type="checkbox"] {
accent-color: #3498db;
}
#logList {
max-height: 300px;
overflow-y: auto;
background-color: #fff;
padding: 10px;
border-radius: 8px;
}
#logList li {
margin-bottom: 8px;
font-size: 0.9em;
}
#no-logs {
background-color: #ffebee;
padding: 8px 12px;
margin-bottom: 8px;
border-radius: 6px;
font-size: 0.9em;
color: #c0392b;
}