Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 @font-face | 1 @font-face |
2 { | 2 { |
3 font-family: "Source Sans Pro"; | 3 font-family: "Source Sans Pro"; |
4 src: url(fonts/SourceSansPro-Light.woff); | 4 src: url(fonts/SourceSansPro-Light.woff); |
5 /* local("Ø") forces using no local font called Source Sans Pro */ | 5 /* local("Ø") forces using no local font called Source Sans Pro */ |
6 src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff"); | 6 src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff"); |
7 font-weight: 300; | 7 font-weight: 300; |
8 font-style: normal; | 8 font-style: normal; |
9 } | 9 } |
10 | 10 |
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
574 line-height: 80px | 574 line-height: 80px |
575 } | 575 } |
576 | 576 |
577 nav li:last-child | 577 nav li:last-child |
578 { | 578 { |
579 border-bottom: 4px solid #727272; | 579 border-bottom: 4px solid #727272; |
580 } | 580 } |
581 | 581 |
582 .content-left | 582 .content-left |
583 { | 583 { |
584 padding: 0px; | 584 max-width: 100%; |
585 max-width: 88%; | |
saroyanm
2016/02/10 14:45:47
Can't see a reason why this was set, but if we spe
juliandoucette
2016/02/10 16:58:38
I agree.
| |
586 display: block; | 585 display: block; |
587 margin: 0px auto; | 586 margin: 0px auto; |
588 } | 587 } |
589 | 588 |
590 #content h1 | 589 #content h1 |
591 { | 590 { |
592 font-size: 28px; | 591 font-size: 28px; |
593 line-height: 36px; | 592 line-height: 36px; |
594 } | 593 } |
595 | 594 |
596 #content | 595 #content |
597 { | 596 { |
598 font-size: 16px; | |
saroyanm
2016/02/10 14:45:47
Detail: I would avoid having similar cosmetic with
juliandoucette
2016/02/10 16:58:38
I agree that we should avoid having similar cosmet
| |
599 padding: 34px 20px 68px 20px; | 597 padding: 34px 20px 68px 20px; |
600 } | 598 } |
601 | 599 |
602 #footnotes | 600 #footnotes |
603 { | 601 { |
604 margin-top: 34px; | 602 margin-top: 34px; |
605 } | 603 } |
606 } | 604 } |
LEFT | RIGHT |