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; |
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
613 { | 613 { |
614 display: none; | 614 display: none; |
615 } | 615 } |
616 | 616 |
617 /* overriding display:none above */ | 617 /* overriding display:none above */ |
618 #footer #social-list | 618 #footer #social-list |
619 { | 619 { |
620 display: block; | 620 display: block; |
621 } | 621 } |
622 } | 622 } |
| 623 |
| 624 /******************************************************************************* |
| 625 * Utilities |
| 626 ******************************************************************************/ |
| 627 |
| 628 /* .clearfix |
| 629 ******************************************************************************/ |
| 630 |
| 631 .content:before, |
| 632 .content:after, |
| 633 .clearfix:before, |
| 634 .clearfix:after |
| 635 { |
| 636 display: table; |
| 637 content: " "; |
| 638 } |
| 639 |
| 640 .content:after, |
| 641 .cleafix:after |
| 642 { |
| 643 clear: both; |
| 644 } |
OLD | NEW |