| LEFT | RIGHT |
| 1 body | 1 body |
| 2 { | 2 { |
| 3 font-family: "Source Sans Pro", Arial, sans-serif; | 3 font-family: "Source Sans Pro", Arial, sans-serif; |
| 4 margin: 0; | 4 margin: 0; |
| 5 /* Start below fixed navbar */ | 5 /* Start below fixed navbar */ |
| 6 padding-top: 4em; | 6 padding-top: 4em; |
| 7 line-height: 1.5; | 7 line-height: 1.5; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #content, | 10 #content, |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 #legal-list li::after | 662 #legal-list li::after |
| 663 { | 663 { |
| 664 content: "|" | 664 content: "|" |
| 665 } | 665 } |
| 666 | 666 |
| 667 #legal-list li:last-of-type::after | 667 #legal-list li:last-of-type::after |
| 668 { | 668 { |
| 669 content: none; | 669 content: none; |
| 670 } | 670 } |
| 671 | 671 |
| 672 /* float copyright and legal links left and right on ~desktop */ | |
| 673 @media(min-width: 1200px) | |
| 674 { | |
| 675 #copyright-notice | |
| 676 { | |
| 677 float: left; | |
| 678 } | |
| 679 | |
| 680 [dir="rtl"] #copyright-notice | |
| 681 { | |
| 682 float: right; | |
| 683 } | |
| 684 | |
| 685 #legal-list | |
| 686 { | |
| 687 float: right; | |
| 688 } | |
| 689 | |
| 690 [dir="rtl"] #legal-list | |
| 691 { | |
| 692 float: left; | |
| 693 } | |
| 694 } | |
| 695 | 672 |
| 696 /* hide all footer links except #social-list on ~mobile */ | 673 /* hide all footer links except #social-list on ~mobile */ |
| 697 @media(max-width: 767px) | 674 @media(max-width: 767px) |
| 698 { | 675 { |
| 699 #footer .column | 676 #footer .column |
| 700 { | 677 { |
| 701 display: none; | 678 display: none; |
| 702 } | 679 } |
| 703 | 680 |
| 704 /* overriding display:none above */ | 681 /* overriding display:none above */ |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 .content .horizontal-list | 868 .content .horizontal-list |
| 892 { | 869 { |
| 893 padding: 0; | 870 padding: 0; |
| 894 } | 871 } |
| 895 | 872 |
| 896 .horizontal-list li | 873 .horizontal-list li |
| 897 { | 874 { |
| 898 display: inline; | 875 display: inline; |
| 899 list-style: none; | 876 list-style: none; |
| 900 } | 877 } |
| LEFT | RIGHT |