| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /****************************************************************************** | |
| 2 * Fonts | |
| 3 *****************************************************************************/ | |
| 4 | |
| 5 /* cyrillic-ext | |
|
juliandoucette
2018/03/14 17:08:38
Can't we use a jinja template to place these style
saroyanm
2018/03/14 17:56:30
That's an interesting approach, but you can't dete
ire
2018/03/14 18:10:31
We don't need to. The fonts should only be loaded
juliandoucette
2018/03/14 18:18:00
Acknowledged.
juliandoucette
2018/03/14 18:18:01
Acknowledged.
| |
| 6 ******************************************************************************/ | |
| 7 | |
| 8 @font-face | |
| 9 { | |
| 10 font-family: "Source Sans Pro"; | |
| 11 font-style: normal; | |
| 12 font-weight: 300; | |
| 13 src: local("Source Sans Pro Light"), | |
| 14 local("SourceSansPro-Light") | |
| 15 url("../fonts/Source-Sans-Pro/300/cyrillic-ext.woff2") format("woff2"); | |
| 16 unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+F E2E-FE2F; | |
| 17 } | |
| 18 | |
| 19 @font-face | |
| 20 { | |
| 21 font-family: "Source Sans Pro"; | |
| 22 font-style: normal; | |
| 23 font-weight: 400; | |
| 24 src: local("Source Sans Pro Regular"), | |
| 25 local("SourceSansPro-Regular") | |
| 26 url("../fonts/Source-Sans-Pro/400/cyrillic-ext.woff2") format("woff2"); | |
| 27 unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+F E2E-FE2F; | |
| 28 } | |
| 29 | |
| 30 @font-face | |
| 31 { | |
| 32 font-family: "Source Sans Pro"; | |
| 33 font-style: normal; | |
| 34 font-weight: 700; | |
| 35 src: local("Source Sans Pro Bold"), | |
| 36 local("SourceSansPro-Bold") | |
| 37 url("../fonts/Source-Sans-Pro/700/cyrillic-ext.woff2") format("woff2"); | |
| 38 unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+F E2E-FE2F; | |
| 39 } | |
| 40 | |
| 41 /* cyrillic | |
| 42 ******************************************************************************/ | |
| 43 | |
| 44 @font-face | |
| 45 { | |
| 46 font-family: "Source Sans Pro"; | |
| 47 font-style: normal; | |
| 48 font-weight: 300; | |
| 49 src: local("Source Sans Pro Light"), | |
| 50 local("SourceSansPro-Light") | |
| 51 url("../fonts/Source-Sans-Pro/300/cyrillic.woff2") format("woff2"); | |
| 52 unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 53 } | |
| 54 | |
| 55 @font-face | |
| 56 { | |
| 57 font-family: "Source Sans Pro"; | |
| 58 font-style: normal; | |
| 59 font-weight: 400; | |
| 60 src: local("Source Sans Pro Regular"), | |
| 61 local("SourceSansPro-Regular") | |
| 62 url("../fonts/Source-Sans-Pro/400/cyrillic.woff2") format("woff2"); | |
| 63 unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 64 } | |
| 65 | |
| 66 @font-face | |
| 67 { | |
| 68 font-family: "Source Sans Pro"; | |
| 69 font-style: normal; | |
| 70 font-weight: 700; | |
| 71 src: local("Source Sans Pro Bold"), | |
| 72 local("SourceSansPro-Bold") | |
| 73 url("../fonts/Source-Sans-Pro/700/cyrillic.woff2") format("woff2"); | |
| 74 unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; | |
| 75 } | |
| 76 | |
| 77 /* greek-ext | |
| 78 ******************************************************************************/ | |
| 79 | |
| 80 @font-face | |
| 81 { | |
| 82 font-family: "Source Sans Pro"; | |
| 83 font-style: normal; | |
| 84 font-weight: 300; | |
| 85 src: local("Source Sans Pro Light"), | |
| 86 local("SourceSansPro-Light") | |
| 87 url("../fonts/Source-Sans-Pro/300/greek-ext.woff2") format("woff2"); | |
| 88 unicode-range: U+1F00-1FFF; | |
| 89 } | |
| 90 | |
| 91 @font-face | |
| 92 { | |
| 93 font-family: "Source Sans Pro"; | |
| 94 font-style: normal; | |
| 95 font-weight: 400; | |
| 96 src: local("Source Sans Pro Regular"), | |
| 97 local("SourceSansPro-Regular") | |
| 98 url("../fonts/Source-Sans-Pro/400/greek-ext.woff2") format("woff2"); | |
| 99 unicode-range: U+1F00-1FFF; | |
| 100 } | |
| 101 | |
| 102 @font-face | |
| 103 { | |
| 104 font-family: "Source Sans Pro"; | |
| 105 font-style: normal; | |
| 106 font-weight: 700; | |
| 107 src: local("Source Sans Pro Bold"), | |
| 108 local("SourceSansPro-Bold") | |
| 109 url("../fonts/Source-Sans-Pro/700/greek-ext.woff2") format("woff2"); | |
| 110 unicode-range: U+1F00-1FFF; | |
| 111 } | |
| 112 | |
| 113 /* greek | |
| 114 ******************************************************************************/ | |
| 115 | |
| 116 @font-face | |
| 117 { | |
| 118 font-family: "Source Sans Pro"; | |
| 119 font-style: normal; | |
| 120 font-weight: 300; | |
| 121 src: local("Source Sans Pro Light"), | |
| 122 local("SourceSansPro-Light") | |
| 123 url("../fonts/Source-Sans-Pro/300/greek.woff2") format("woff2"); | |
| 124 unicode-range: U+0370-03FF; | |
| 125 } | |
| 126 | |
| 127 @font-face | |
| 128 { | |
| 129 font-family: "Source Sans Pro"; | |
| 130 font-style: normal; | |
| 131 font-weight: 400; | |
| 132 src: local("Source Sans Pro Regular"), | |
| 133 local("SourceSansPro-Regular") | |
| 134 url("../fonts/Source-Sans-Pro/400/greek.woff2") format("woff2"); | |
| 135 unicode-range: U+0370-03FF; | |
| 136 } | |
| 137 | |
| 138 @font-face | |
| 139 { | |
| 140 font-family: "Source Sans Pro"; | |
| 141 font-style: normal; | |
| 142 font-weight: 700; | |
| 143 src: local("Source Sans Pro Bold"), | |
| 144 local("SourceSansPro-Bold") | |
| 145 url("../fonts/Source-Sans-Pro/700/greek.woff2") format("woff2"); | |
| 146 unicode-range: U+0370-03FF; | |
| 147 } | |
| 148 | |
| 149 /* vietnamese | |
| 150 ******************************************************************************/ | |
| 151 | |
| 152 @font-face | |
| 153 { | |
| 154 font-family: "Source Sans Pro"; | |
| 155 font-style: normal; | |
| 156 font-weight: 300; | |
| 157 src: local("Source Sans Pro Light"), | |
| 158 local("SourceSansPro-Light") | |
| 159 url("../fonts/Source-Sans-Pro/300/vietnamese.woff2") format("woff2"); | |
| 160 unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; | |
| 161 } | |
| 162 | |
| 163 @font-face | |
| 164 { | |
| 165 font-family: "Source Sans Pro"; | |
| 166 font-style: normal; | |
| 167 font-weight: 400; | |
| 168 src: local("Source Sans Pro Regular"), | |
| 169 local("SourceSansPro-Regular") | |
| 170 url("../fonts/Source-Sans-Pro/400/vietnamese.woff2") format("woff2"); | |
| 171 unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; | |
| 172 } | |
| 173 | |
| 174 @font-face | |
| 175 { | |
| 176 font-family: "Source Sans Pro"; | |
| 177 font-style: normal; | |
| 178 font-weight: 700; | |
| 179 src: local("Source Sans Pro Bold"), | |
| 180 local("SourceSansPro-Bold") | |
| 181 url("../fonts/Source-Sans-Pro/700/vietnamese.woff2") format("woff2"); | |
| 182 unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; | |
| 183 } | |
| 184 | |
| 185 /* latin-ext | |
| 186 ******************************************************************************/ | |
| 187 | |
| 188 @font-face | |
| 189 { | |
| 190 font-family: "Source Sans Pro"; | |
| 191 font-style: normal; | |
| 192 font-weight: 300; | |
| 193 src: local("Source Sans Pro Light"), | |
| 194 local("SourceSansPro-Light") | |
| 195 url("../fonts/Source-Sans-Pro/300/latin-ext.woff2") format("woff2"); | |
| 196 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2 C60-2C7F, U+A720-A7FF; | |
| 197 } | |
| 198 | |
| 199 @font-face | |
| 200 { | |
| 201 font-family: "Source Sans Pro"; | |
| 202 font-style: normal; | |
| 203 font-weight: 400; | |
| 204 src: local("Source Sans Pro Regular"), | |
| 205 local("SourceSansPro-Regular") | |
| 206 url("../fonts/Source-Sans-Pro/400/latin-ext.woff2") format("woff2"); | |
| 207 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2 C60-2C7F, U+A720-A7FF; | |
| 208 } | |
| 209 | |
| 210 @font-face | |
| 211 { | |
| 212 font-family: "Source Sans Pro"; | |
| 213 font-style: normal; | |
| 214 font-weight: 700; | |
| 215 src: local("Source Sans Pro Bold"), | |
| 216 local("SourceSansPro-Bold") | |
| 217 url("../fonts/Source-Sans-Pro/700/latin-ext.woff2") format("woff2"); | |
| 218 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2 C60-2C7F, U+A720-A7FF; | |
| 219 } | |
| 220 | |
| 221 /* latin | |
| 222 ******************************************************************************/ | |
| 223 | |
| 224 @font-face | |
| 225 { | |
| 226 font-family: "Source Sans Pro"; | |
| 227 font-style: normal; | |
| 228 font-weight: 300; | |
| 229 src: local("Source Sans Pro Light"), | |
| 230 local("SourceSansPro-Light") | |
| 231 url("../fonts/Source-Sans-Pro/300/latin.woff2") format("woff2"); | |
| 232 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215; | |
| 233 } | |
| 234 | |
| 235 @font-face | |
| 236 { | |
| 237 font-family: "Source Sans Pro"; | |
| 238 font-style: normal; | |
| 239 font-weight: 400; | |
| 240 src: local("Source Sans Pro Regular"), | |
| 241 local("SourceSansPro-Regular") | |
| 242 url("../fonts/Source-Sans-Pro/400/latin.woff2") format("woff2"); | |
| 243 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215; | |
| 244 } | |
| 245 | |
| 246 @font-face | |
| 247 { | |
| 248 font-family: "Source Sans Pro"; | |
| 249 font-style: normal; | |
| 250 font-weight: 700; | |
| 251 src: local("Source Sans Pro Bold"), | |
| 252 local("SourceSansPro-Bold") | |
| 253 url("../fonts/Source-Sans-Pro/700/latin.woff2") format("woff2"); | |
| 254 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215; | |
| 255 } | |
| OLD | NEW |