-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (63 loc) · 1.1 KB
/
style.css
File metadata and controls
75 lines (63 loc) · 1.1 KB
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
.log-viewer {
padding: 1rem;
font-family: monospace;
height: calc(100vh - 2rem);
display: flex;
flex-direction: column;
}
.log-header {
margin-bottom: 1rem;
flex: 0 0 auto;
}
.log-info {
color: #666;
margin-bottom: 1rem;
}
.filter-container {
margin-bottom: 1rem;
}
.filter-input {
width: 100%;
padding: 0.5rem;
font-family: monospace;
background: rgba(0, 0, 0, 0.2);
border: 1px solid #666;
border-radius: 4px;
color: #fff;
}
.filter-input::placeholder {
color: #666;
}
.filter-input:focus {
outline: none;
border-color: #888;
}
.log-content {
background: rgba(0, 0, 0, 0.2);
padding: 1rem;
border-radius: 4px;
margin: 0;
flex: 1 1 auto;
overflow: auto;
white-space: pre;
}
.log-line {
padding: 0.125rem 0;
}
.log-line:hover {
background: rgba(255, 255, 255, 0.1);
}
.line-number {
color: #666;
padding-right: 1rem;
user-select: none;
}
.line-content {
color: #fff;
}
.log-error {
color: #ff4444;
padding: 1rem;
background: rgba(255, 0, 0, 0.1);
border-radius: 4px;
}