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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/* The main text */
BODY {
color: #000000; /* black */
background-color: #ffffff; /* white */
font-family: Ariel, sans-serif;
}
.TITLE {
font-size: 22pt;
font-family: Ariel, sans-serif;
font-weight: bold;
text-align: center;
vertical-align: top;
}
/* Headers rendering */
H1 {
font-size: 22pt;
font-family: Ariel, sans-serif;
font-weight: bold;
text-align: left;
}
H2 {
font-size: 18pt;
font-family: Ariel, sans-serif;
text-align: left;
}
H3 {
font-size: 14pt;
font-family: Ariel, sans-serif;
text-align: left;
}
.shade {
background-color: #d0d0d0; /* light grey */
color: #000000; /* black */
}
/* Tables ought to blend in with the rest */
TH { font-family: arial narrow, Ariel, sans-serif; }
TD { font-family: arial narrow, Ariel, sans-serif; }
/* Want the terms-to-be-defined to be bold */
DT { font-weight: bold }
/* special text rendering */
B {
font-family: arial narrow, sans-serif narrow, Ariel, sans-serif;
font-weight: bold;
}
I {
font-family: arial narrow, sans-serif, Ariel, sans-serif;
font-style: italic;
}
CODE {
font-family: courier;
font-weight: bold;
}
TT {
font-family: courier;
}
/* pre-formatted rendering */
PRE { font-family: courier; }
/* Buttons, thanks to WDVL */
.BUT {
text-decoration: none;
color: #000000; /* black */
background: #cccccc; /* light grey */
border-top: 2px solid #eeeeee;
border-left: 2px solid #eeeeee;
border-right: 2px solid #aaaaaa;
border-bottom: 2px solid #aaaaaa;
}
/* Table labels */
.LABEL {
text-align: left;
margin-top: 5pt;
}
.VALUE {
text-align: left;
color: #000000; /* black */
background-color: #cccccc; /* light grey */
margin-top: 5pt;
width: 100%;
}
/* Group bars */
.BAR {
text-align: left;
color: #000000; /* black */
background-color: #cccccc; /* light grey */
width: 100%;
margin-top: 5pt;
}
/* Do the alert colors here */
.OK { background-color: #55ffff; }
.WARN { background-color: #55ff55; }
.ERROR { background-color: #ffff55; }
.CRITICAL { background-color: #ff5555; }
.CYAN { background-color: cyan; }
.GREEN { background-color: lightgreen; }
.YELLOW { background-color: yellow; }
.RED { background-color: red; }
/* and the alerts-for-this-host button */
.ALERT {
text-decoration: none;
color: #000000; /* black */
background-color: #ff5555; /* red */
border-top: 2px solid #ff9999; /* lighter red */
border-left: 2px solid #ff9999;
border-right: 2px solid #ff2222; /* darker red */
border-bottom: 2px solid #dd0000;
}
/* and the reachability colors */
.UP { background-color: #55ffff; }
.UPUNSTABLE { background-color: #55ff55; }
.DOWNUNSTABLE { background-color: #ffff55; }
.DOWN { background-color: #ff5555; }
|