| LEFT | RIGHT |
| 1 /* | 1 /* |
| 2 * Fonts | 2 * Fonts |
| 3 */ | 3 */ |
| 4 | 4 |
| 5 @font-face | 5 @font-face |
| 6 { | 6 { |
| 7 font-family: 'Source Sans Pro'; | 7 font-family: 'Source Sans Pro'; |
| 8 font-weight: 300; | 8 font-weight: 300; |
| 9 font-style: normal; | 9 font-style: normal; |
| 10 font-stretch: normal; | 10 font-stretch: normal; |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 } | 415 } |
| 416 | 416 |
| 417 .sidebar-left .contact-person img | 417 .sidebar-left .contact-person img |
| 418 { | 418 { |
| 419 border-radius: 3px; | 419 border-radius: 3px; |
| 420 } | 420 } |
| 421 | 421 |
| 422 /* | 422 /* |
| 423 * Page-specific styles | 423 * Page-specific styles |
| 424 */ | 424 */ |
| 425 | |
| 426 #home-image-container | |
| 427 { | |
| 428 background-color: #f0f0f0; | |
| 429 } | |
| 430 | 425 |
| 431 #who-we-are | 426 #who-we-are |
| 432 { | 427 { |
| 433 margin-top: 25px; | 428 margin-top: 25px; |
| 434 margin-bottom: 25px; | 429 margin-bottom: 25px; |
| 435 } | 430 } |
| 436 | 431 |
| 437 #our-work | 432 #our-work |
| 438 { | 433 { |
| 439 padding-top: 50px; | 434 padding-top: 50px; |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 background-color: #fbfbfb; | 807 background-color: #fbfbfb; |
| 813 border-color: #b5b5b5; | 808 border-color: #b5b5b5; |
| 814 } | 809 } |
| 815 | 810 |
| 816 .page-title > *, | 811 .page-title > *, |
| 817 .content-block | 812 .content-block |
| 818 { | 813 { |
| 819 padding: 0 10px; | 814 padding: 0 10px; |
| 820 } | 815 } |
| 821 | 816 |
| 822 #home-image-container img | |
| 823 { | |
| 824 display: block; | |
| 825 width: 100%; | |
| 826 } | |
| 827 | |
| 828 #jobs-overview-tab | 817 #jobs-overview-tab |
| 829 { | 818 { |
| 830 display: none; | 819 display: none; |
| 831 } | 820 } |
| 832 | 821 |
| 833 #hiring-badges | 822 #hiring-badges |
| 834 { | 823 { |
| 835 width: 100%; | 824 width: 100%; |
| 836 float: left; | 825 float: left; |
| 837 margin-top: 10px; | 826 margin-top: 10px; |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 982 padding-right: .1em; | 971 padding-right: .1em; |
| 983 border-right-width: 1px; | 972 border-right-width: 1px; |
| 984 border-right-width: 1px; | 973 border-right-width: 1px; |
| 985 } | 974 } |
| 986 | 975 |
| 987 #panels-openings | 976 #panels-openings |
| 988 { | 977 { |
| 989 margin-top: -40px; | 978 margin-top: -40px; |
| 990 } | 979 } |
| 991 } | 980 } |
| 981 |
| 982 /******************************************************************************* |
| 983 * .bg-* utilities |
| 984 ******************************************************************************/ |
| 985 |
| 986 .bg-accent |
| 987 { |
| 988 background-color: #f0f0f0; |
| 989 } |
| LEFT | RIGHT |