OLD | NEW |
(Empty) | |
| 1 body { |
| 2 width: 500px; |
| 3 overflow: hidden; |
| 4 scrollbars: no; |
| 5 } |
| 6 |
| 7 p { |
| 8 color: black; |
| 9 } |
| 10 |
| 11 h1 { |
| 12 font-family: sans-serif; |
| 13 font-size: 2em; |
| 14 font-weight: bold; |
| 15 margin: 2px 5px 5px 5px |
| 16 } |
| 17 |
| 18 .message { |
| 19 font-family: sans-serif; |
| 20 font-size: 1.2em; |
| 21 padding: 0px 4px 0px 4px; |
| 22 } |
| 23 |
| 24 .hostlist { |
| 25 width: 100%; |
| 26 height: 400px; |
| 27 margin: 0px; |
| 28 overflow: auto; |
| 29 border: black 1px solid; |
| 30 } |
| 31 |
| 32 .hostentry { |
| 33 margin: 0; |
| 34 padding: 3px; |
| 35 border-top: blue 1px solid; |
| 36 min-height: 70px; |
| 37 } |
| 38 |
| 39 .hostentry:first-child { |
| 40 border-top-style: none; |
| 41 } |
| 42 |
| 43 a.hostentry { text-decoration: none; } |
| 44 |
| 45 .hosticon { |
| 46 float: left; |
| 47 margin: 2px; |
| 48 } |
| 49 |
| 50 .hostname { |
| 51 font-family: sans-serif; |
| 52 font-size: 1.2em; |
| 53 font-weight: bold; |
| 54 line-height: 1.2em; |
| 55 margin: 2px 4px 2px 75px; |
| 56 } |
| 57 |
| 58 .hoststatus_good { |
| 59 font-weight: bold; |
| 60 color: green; |
| 61 } |
| 62 |
| 63 .hoststatus_bad { |
| 64 font-weight: bold; |
| 65 color: red; |
| 66 } |
| 67 |
| 68 .hostinfo { |
| 69 font-family: sans-serif; |
| 70 font-size: 0.8em; |
| 71 line-height: 1em; |
| 72 margin: 2px 4px 2px 75px; |
| 73 } |
| 74 |
| 75 .connect { |
| 76 float: right; |
| 77 } |
| 78 |
| 79 .reload { |
| 80 font-family: sans-serif; |
| 81 font-size: 0.8em; |
| 82 font-style: italic; |
| 83 text-align: right; |
| 84 margin: 0.25em 0 0.5em 0; |
| 85 line-height: 1em; |
| 86 } |
| 87 |
| 88 .login { |
| 89 font-family: sans-serif; |
| 90 font-size: 0.9em; |
| 91 position: absolute; |
| 92 bottom: 0; |
| 93 margin-bottom: 3px; |
| 94 } |
| 95 |
| 96 .login_email { |
| 97 font-weight: bold; |
| 98 } |
OLD | NEW |