-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogviewer.css
102 lines (79 loc) · 1.49 KB
/
logviewer.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
R"***(
/* logviewer.css */
/* If this file is not available, it will be automatically created.
* If it already exists, it will be used as it is, without being modified.
* These settings can be changed to get the desired log files' look.
*/
/* Logs highlighting: <log class="warning">Log message</log> */
log.verbose {
background-color: black;
color: blue;
}
log.trace {
background-color: black;
color: blue;
}
log.detail {
background-color: black;
color: blue;
}
log.debug {
background-color: black;
color: blue;
}
log.info {
background-color: black;
color: blue;
}
log.notice {
background-color: black;
color: blue;
}
log.warning {
background-color: black;
color: yellow;
}
log.error {
background-color: black;
color: red;
}
log.critical {
background-color: red;
color: yellow;
font-weight: bold;
}
log.severe {
background-color: red;
color: blue;
font-weight: bold;
}
log.alert {
background-color: yellow;
color: blue;
font-weight: bold;
}
log.fatal {
background-color: yellow;
color: red;
font-weight: bold;
}
log.emergency {
background-color: red;
color: blue;
font-weight: bold;
}
h1 {
color: white;
background-color: rgb(16, 16, 16); /* dark grey */
font-size: 150%;
border-style: solid;
border-radius: 5px;
margin-top: 100px;
margin-bottom: 100px;
}
body {
background-color: black;
font-family: "Courier New";
font-size: 80%;
}
)***"