| OLD | NEW |
| 1 * | 1 * |
| 2 { | 2 { |
| 3 font-family: Arial, sans; | 3 font-family: Arial, sans; |
| 4 font-size: 16px; | 4 font-size: 16px; |
| 5 } | 5 } |
| 6 | 6 |
| 7 body | 7 body |
| 8 { | 8 { |
| 9 margin: 0; | 9 margin: 0; |
| 10 line-height: 1.5; | 10 line-height: 1.5; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #content |
| 14 { |
| 15 padding-bottom: 2em; |
| 16 } |
| 17 |
| 13 a img | 18 a img |
| 14 { | 19 { |
| 15 border: none; | 20 border: none; |
| 16 } | 21 } |
| 17 | 22 |
| 18 a:link, a:visited | 23 a:link, a:visited |
| 19 { | 24 { |
| 20 color: #555; | 25 color: #555; |
| 21 } | 26 } |
| 22 | 27 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 { | 147 { |
| 143 border-left: 5px solid #d14841; | 148 border-left: 5px solid #d14841; |
| 144 } | 149 } |
| 145 | 150 |
| 146 [dir="rtl"] .alert | 151 [dir="rtl"] .alert |
| 147 { | 152 { |
| 148 border-right: 5px solid #d14841; | 153 border-right: 5px solid #d14841; |
| 149 } | 154 } |
| 150 | 155 |
| 151 /****************************************************************************** | 156 /****************************************************************************** |
| 157 * .section |
| 158 *****************************************************************************/ |
| 159 |
| 160 .section |
| 161 { |
| 162 padding: 2em 0; |
| 163 } |
| 164 |
| 165 /****************************************************************************** |
| 152 * .content | 166 * .content |
| 153 *****************************************************************************/ | 167 *****************************************************************************/ |
| 154 | 168 |
| 155 .content h1, | 169 .content h1, |
| 156 .content h2, | 170 .content h2, |
| 157 .content h3, | 171 .content h3, |
| 158 .content h4, | 172 .content h4, |
| 159 .content h5 | 173 .content h5 |
| 160 { | 174 { |
| 161 font-weight: bold; | 175 font-weight: bold; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 174 .content h1 { font-size: 2.4em; } | 188 .content h1 { font-size: 2.4em; } |
| 175 .content h2 { font-size: 1.6em; } | 189 .content h2 { font-size: 1.6em; } |
| 176 } | 190 } |
| 177 | 191 |
| 178 .content a, | 192 .content a, |
| 179 .content a:visited | 193 .content a:visited |
| 180 { | 194 { |
| 181 color: #c70d2c; | 195 color: #c70d2c; |
| 182 } | 196 } |
| 183 | 197 |
| 198 .content .lead |
| 199 { |
| 200 font-size: 1.1em; |
| 201 font-weight: bolder; |
| 202 } |
| 203 |
| 204 /******************************************************************************* |
| 205 * .bg-* utilities |
| 206 ******************************************************************************/ |
| 207 |
| 208 .bg-accent |
| 209 { |
| 210 color: #fff; |
| 211 background-color: #5982B0; |
| 212 } |
| 213 |
| 184 /******************************************************************************* | 214 /******************************************************************************* |
| 185 * #navbar | 215 * #navbar |
| 186 ******************************************************************************/ | 216 ******************************************************************************/ |
| 187 | 217 |
| 188 #navbar | 218 #navbar |
| 189 { | 219 { |
| 190 min-height: 4em; | 220 min-height: 4em; |
| 191 background-color: #c70d2c; | 221 background-color: #c70d2c; |
| 192 } | 222 } |
| 193 | 223 |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 } | 480 } |
| 451 } | 481 } |
| 452 | 482 |
| 453 /******************************************************************************* | 483 /******************************************************************************* |
| 454 * #footer | 484 * #footer |
| 455 ******************************************************************************/ | 485 ******************************************************************************/ |
| 456 | 486 |
| 457 #footer | 487 #footer |
| 458 { | 488 { |
| 459 overflow: auto; | 489 overflow: auto; |
| 460 margin-top: 2em; | |
| 461 padding: 2em 0em; | 490 padding: 2em 0em; |
| 462 color: #ececec; | 491 color: #ececec; |
| 463 background-color: #292929; | 492 background-color: #292929; |
| 464 font-size: 0.9em; | 493 font-size: 0.9em; |
| 465 } | 494 } |
| 466 | 495 |
| 467 /* #footer body | 496 /* #footer body |
| 468 ******************************************************************************/ | 497 ******************************************************************************/ |
| 469 | 498 |
| 470 #footer h5 | 499 #footer h5 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 { | 640 { |
| 612 display: none; | 641 display: none; |
| 613 } | 642 } |
| 614 | 643 |
| 615 /* overriding display:none above */ | 644 /* overriding display:none above */ |
| 616 #footer #social-list | 645 #footer #social-list |
| 617 { | 646 { |
| 618 display: block; | 647 display: block; |
| 619 } | 648 } |
| 620 } | 649 } |
| OLD | NEW |