Zhenkai Zhu | 5c2475b | 2013-02-26 22:57:31 -0800 | [diff] [blame^] | 1 | body {
|
| 2 | background-color: #ffffff;
|
| 3 | color: #000000;
|
| 4 | font-family: 'Rambla', sans-serif;
|
| 5 | }
|
| 6 |
|
| 7 | #all {
|
| 8 | display: none;
|
| 9 | }
|
| 10 |
|
| 11 | #loader {
|
| 12 | display: block;
|
| 13 | margin: 0 auto;
|
| 14 | }
|
| 15 |
|
| 16 | #top, #top2, #top3, #top4 {
|
| 17 | position: fixed;
|
| 18 | left: 0;
|
| 19 | right: 0;
|
| 20 | top: 0;
|
| 21 | width: 100%;
|
| 22 | height: 6px;
|
| 23 | }
|
| 24 |
|
| 25 | #top { background-color: #3090C7; }
|
| 26 | #top2 { background-color: #2D9A65; }
|
| 27 | #top3 { background-color: #E41B17; }
|
| 28 | #top4 { background-color: #FBB917; }
|
| 29 |
|
| 30 | #contentwrapper {
|
| 31 | float: left;
|
| 32 | width: 100%;
|
| 33 | padding-bottom: 50px;
|
| 34 | }
|
| 35 |
|
| 36 | #header {
|
| 37 | margin: 40px 20% 0 20%;
|
| 38 | min-width: 587px;
|
| 39 | }
|
| 40 |
|
| 41 | /* Used for fluid layout */
|
| 42 | #leftcolumn {
|
| 43 | float: left;
|
| 44 | width: 20%;
|
| 45 | margin-left: -100%;
|
| 46 | }
|
| 47 |
|
| 48 | /* Used for fluid layout */
|
| 49 | #rightcolumn {
|
| 50 | float: left;
|
| 51 | width: 20%;
|
| 52 | margin-left: -20%;
|
| 53 | }
|
| 54 |
|
| 55 | h1 {
|
| 56 | font-family: 'Rambla', sans-serif;
|
| 57 | }
|
| 58 |
|
| 59 | h3 {
|
| 60 | font-family: 'Rambla', sans-serif;
|
| 61 | text-align: center;
|
| 62 | }
|
| 63 |
|
| 64 | #speed {
|
| 65 | margin-top: -70px;
|
| 66 | float: right;
|
| 67 | }
|
| 68 |
|
| 69 | h5 {
|
| 70 | font-family: 'Rambla', sans-serif;
|
| 71 | color: #727272;
|
| 72 | }
|
| 73 |
|
| 74 | .titles {
|
| 75 | width: 100%;
|
| 76 | margin-bottom: 30px;
|
| 77 | border-bottom: 1px solid #E8E8E8;
|
| 78 | }
|
| 79 |
|
| 80 | .titles2 {
|
| 81 | width: 100%;
|
| 82 | margin-bottom: -10px;
|
| 83 | border-bottom: 1px solid #E8E8E8;
|
| 84 | }
|
| 85 |
|
| 86 | p {
|
| 87 | font-family: 'Rambla', sans-serif;
|
| 88 | }
|
| 89 |
|
| 90 | .titles p, .titles2 p {
|
| 91 | margin-bottom: 5px;
|
| 92 | font-size: 1.1em;
|
| 93 | font-weight: 700;
|
| 94 | color: #000000;
|
| 95 | }
|
| 96 |
|
| 97 | #grey {
|
| 98 | color: #727272;
|
| 99 | font-weight: 200;
|
| 100 | }
|
| 101 |
|
| 102 | #green {
|
| 103 | color: #2D9A65;
|
| 104 | font-weight: 200;
|
| 105 | }
|
| 106 |
|
| 107 | #navbar, #navbar_blue, #navbar_red, #navbar_yellow {
|
| 108 | margin: 40px 0;
|
| 109 | min-width: 587px;
|
| 110 | /*max-width: 960px;*/
|
| 111 | width: 100%;
|
| 112 | height: 40px;
|
| 113 | }
|
| 114 |
|
| 115 | #navbar {
|
| 116 | background-color: #EAF4EF;
|
| 117 | -moz-border-radius: 6px;
|
| 118 | border-radius: 6px;
|
| 119 | border: 1px solid #99CCB2;
|
| 120 | }
|
| 121 |
|
| 122 | #navbar_blue {
|
| 123 | background-color: #EAF4EF;
|
| 124 | -moz-border-radius: 6px;
|
| 125 | border-radius: 6px;
|
| 126 | border: 1px solid #AFDCEC;
|
| 127 | }
|
| 128 |
|
| 129 | #navbar_red {
|
| 130 | background-color: #EAF4EF;
|
| 131 | -moz-border-radius: 6px;
|
| 132 | border-radius: 6px;
|
| 133 | border: 1px solid #F88158;
|
| 134 | }
|
| 135 |
|
| 136 | #navbar_yellow {
|
| 137 | background-color: #EAF4EF;
|
| 138 | -moz-border-radius: 6px;
|
| 139 | border-radius: 6px;
|
| 140 | border: 1px solid #EDDA74;
|
| 141 | }
|
| 142 |
|
| 143 | #navbar ul, #navbar_blue ul, #navbar_red ul, #navbar_yellow ul {
|
| 144 | margin: 9px 0 0 0;
|
| 145 | padding: 0px;
|
| 146 | }
|
| 147 |
|
| 148 | #navbar li, #navbar_blue li, #navbar_red li, #navbar_yellow li {
|
| 149 | list-style-type: none;
|
| 150 | display: inline;
|
| 151 | margin: 0px 30px;
|
| 152 | }
|
| 153 |
|
| 154 | #navbar li a, #navbar_blue li a, #navbar_red li a, #navbar_yellow li a{
|
| 155 | color: #727272;
|
| 156 | font-size: 14px;
|
| 157 | font-family: 'Istok Web', sans-serif;
|
| 158 | text-decoration: none;
|
| 159 | }
|
| 160 |
|
| 161 | #navbar li a.active, #navbar a:hover { color: #2D9A65; }
|
| 162 | #navbar_blue li a.active, #navbar_blue a:hover { color: #38ACEC; }
|
| 163 | #navbar_red li a.active, #navbar_red a:hover { color: #E41B17; }
|
| 164 | #navbar_yellow li a.active, #navbar_yellow a:hover { color: #FBB917; }
|
| 165 |
|
| 166 | #placeholder {
|
| 167 | margin: -30px 0 30px 0;
|
| 168 | /*max-width: 960px;*/
|
| 169 | width: 100%;
|
| 170 | height: 237px;
|
| 171 | /*height: auto;*/
|
| 172 | background-image: url(bg.png);
|
| 173 | background-repeat: no-repeat;
|
| 174 | -moz-border-radius: 6px;
|
| 175 | border-radius: 6px;
|
| 176 | border: 2px solid #AFDCEC;
|
| 177 | }
|
| 178 |
|
| 179 | #link1, #link2, #link3 {
|
| 180 | margin-bottom: 20px;
|
| 181 | width: 100%;
|
| 182 | height: 46px;
|
| 183 | background-color: #EAF4EF;
|
| 184 | -moz-border-radius: 6px;
|
| 185 | border-radius: 6px;
|
| 186 | border: 1px solid #AFDCEC;
|
| 187 | text-align: center;
|
| 188 | }
|
| 189 |
|
| 190 | a {
|
| 191 | text-decoration: none;
|
| 192 | color: #38ACEC;
|
| 193 | font-family: 'Rambla', sans-serif;
|
| 194 | }
|
| 195 |
|
| 196 | .boxtext {
|
| 197 | display: inline-block;
|
| 198 | margin-top: 13px;
|
| 199 | }
|
| 200 |
|
| 201 | #wrap {
|
| 202 | margin: 100px 20% 0 20%;
|
| 203 | min-width: 587px;
|
| 204 | /*max-width: 1000px;*/
|
| 205 | }
|
| 206 |
|
| 207 | #box-table-a
|
| 208 | {
|
| 209 | margin-top: 50px;
|
| 210 | margin-bottom: 50px;
|
| 211 | margin-left: 1%;
|
| 212 | /*float: left;*/
|
| 213 | font-family: 'Istok Web', sans-serif;
|
| 214 | font-size: 12px;
|
| 215 | width: 55%;
|
| 216 | text-align: left;
|
| 217 | border-collapse: collapse;
|
| 218 | }
|
| 219 |
|
| 220 | tfoot {
|
| 221 | border-bottom: 2px solid #99CCB2;
|
| 222 | background: #EAF4EF;
|
| 223 | }
|
| 224 |
|
| 225 | #box-table-a th
|
| 226 | {
|
| 227 | -moz-border-radius: 5px;
|
| 228 | border-radius: 5px;
|
| 229 | font-size: 14px;
|
| 230 | font-weight: normal;
|
| 231 | padding: 8px;
|
| 232 | background: #EAF4EF;
|
| 233 | border-top: 1px solid #99CCB2;
|
| 234 | border-bottom: 1px solid #fff;
|
| 235 | color: #727272;
|
| 236 | text-align: center;
|
| 237 | }
|
| 238 |
|
| 239 | #box-table-a td
|
| 240 | {
|
| 241 | padding: 8px;
|
| 242 | border-bottom: 1px solid #fff;
|
| 243 | color: #000;
|
| 244 | border-top: 1px solid transparent;
|
| 245 | border-right: 1px solid #99CCB2;
|
| 246 | border-left: 1px solid #99CCB2;
|
| 247 | }
|
| 248 |
|
| 249 | .odd {
|
| 250 | background-color: #eeeeee;
|
| 251 | }
|
| 252 |
|
| 253 | #lime, #online {
|
| 254 | background-color: #4AA02C;
|
| 255 | border-left: none!important;
|
| 256 | }
|
| 257 |
|
| 258 | #notintopology {
|
| 259 | background-color: #BDEDFF;
|
| 260 | border-left: none!important;
|
| 261 | }
|
| 262 |
|
| 263 | #out-of-date {
|
| 264 | background-color: #FBB917;
|
| 265 | border-left: none!important;
|
| 266 | }
|
| 267 |
|
| 268 | #offline {
|
| 269 | background-color: #E41B17;
|
| 270 | border-left: none!important;
|
| 271 | }
|
| 272 |
|
| 273 | .border_left {
|
| 274 | border-left: 1px solid #99CCB2;
|
| 275 | }
|
| 276 |
|
| 277 | .border_right {
|
| 278 | border-right: 1px solid #99CCB2;
|
| 279 | }
|
| 280 |
|
| 281 | .right_border {
|
| 282 | border-right: none!important;
|
| 283 | }
|
| 284 |
|
| 285 | #blue {
|
| 286 | color: #3090C7;
|
| 287 | font-weight: 200;
|
| 288 | }
|
| 289 |
|
| 290 | #red {
|
| 291 | color: #E41B17;
|
| 292 | font-weight: 200;
|
| 293 | }
|
| 294 |
|
| 295 | #yellow {
|
| 296 | color: #FBB917;
|
| 297 | font-weight: 200;
|
| 298 | }
|
| 299 |
|
| 300 | #footer {
|
| 301 | position: absolute;
|
| 302 | bottom: 0;
|
| 303 | width: 100%;
|
| 304 | height: 50px;
|
| 305 | }
|
| 306 |
|
| 307 | .bar {
|
| 308 | width: 50px;
|
| 309 | border-bottom: 2px solid #ffffff;
|
| 310 | }
|
| 311 |
|