39 lines
481 B
CSS
39 lines
481 B
CSS
body {
|
|
font-family: 'Segoe UI', Tahoma, Arial, Helvtica, sans-serif;
|
|
line-height: 1.4em;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Segoe UI', Helvetica, sans-serif;
|
|
font-size: 2.5em;
|
|
}
|
|
|
|
td {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
tr:nth-child(2n) {
|
|
background-color: #F6F6F6;
|
|
}
|
|
|
|
.critical {
|
|
background-color: red;
|
|
color: white;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
}
|
|
|
|
.information {
|
|
color: blue;
|
|
}
|
|
|
|
.debug {
|
|
color: black;
|
|
}
|
|
|
|
.warning {
|
|
color: orange;
|
|
} |