| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 * | 1 @font-face |
|
saroyanm
2018/02/14 16:49:29
Question: How much effort it would be to include F
ire
2018/02/15 17:21:47
I think we would ideally want to have this font in
juliandoucette
2018/02/19 11:32:48
Acknowledged.
| |
| 2 { | 2 { |
| 3 font-family: Arial, sans; | 3 font-family: "Source Sans Pro"; |
|
saroyanm
2018/02/14 16:49:30
Suggestion/Note: Doesn't necessarily need to be in
ire
2018/02/15 17:21:46
From my tests (viewing the homepage in all the dif
juliandoucette
2018/02/19 11:32:48
I think that we can start with Latin only in main.
| |
| 4 font-size: 16px; | 4 font-weight: 400; |
| 5 font-style: normal; | |
| 6 src: local("Source Sans Pro"), | |
| 7 local("Source-Sans-Pro-400"), | |
| 8 url("../fonts/Source-Sans-Pro-400/Source-Sans-Pro-400.woff2") format("wof f2"), | |
| 9 url("../fonts/Source-Sans-Pro-400/Source-Sans-Pro-400.woff") format("woff "); | |
| 10 } | |
| 11 | |
| 12 @font-face | |
| 13 { | |
| 14 font-family: "Source Sans Pro"; | |
| 15 font-weight: 600; | |
| 16 font-style: normal; | |
| 17 src: local("Source Sans Pro Semibold"), | |
| 18 local("Source-Sans-Pro-600"), | |
| 19 url("../fonts/Source-Sans-Pro-600/Source-Sans-Pro-600.woff2") format("wof f2"), | |
| 20 url("../fonts/Source-Sans-Pro-600/Source-Sans-Pro-600.woff") format("woff "); | |
| 5 } | 21 } |
| 6 | 22 |
| 7 body | 23 body |
| 8 { | 24 { |
| 25 font-family: "Source Sans Pro", Arial, sans-serif; | |
| 9 margin: 0; | 26 margin: 0; |
| 10 line-height: 1.5; | |
| 11 } | 27 } |
| 12 | 28 |
| 13 #content | 29 #content |
| 14 { | 30 { |
| 15 padding-bottom: 2em; | 31 padding-bottom: 2em; |
| 16 } | 32 } |
| 17 | 33 |
| 18 a img | 34 a img |
| 19 { | 35 { |
| 20 border: none; | 36 border: none; |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 709 { | 725 { |
| 710 display: none; | 726 display: none; |
| 711 } | 727 } |
| 712 | 728 |
| 713 /* overriding display:none above */ | 729 /* overriding display:none above */ |
| 714 #footer #social-list | 730 #footer #social-list |
| 715 { | 731 { |
| 716 display: block; | 732 display: block; |
| 717 } | 733 } |
| 718 } | 734 } |
| OLD | NEW |