Left: | ||
Right: |
OLD | NEW |
---|---|
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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
209 display: block; | 209 display: block; |
210 padding-bottom: 17px; | 210 padding-bottom: 17px; |
211 margin: 0px; | 211 margin: 0px; |
212 } | 212 } |
213 | 213 |
214 #content #badges | 214 #content #badges |
215 { | 215 { |
216 margin-bottom: 14px; | 216 margin-bottom: 14px; |
217 } | 217 } |
218 | 218 |
219 #badges a | 219 #badges a, #social-media a |
220 { | 220 { |
221 text-decoration: none; | 221 text-decoration: none; |
222 } | 222 } |
223 | 223 |
224 #playstore img | 224 #playstore img |
225 { | 225 { |
226 width: 43%; | 226 width: 43%; |
227 max-width: 172px; | 227 max-width: 172px; |
228 } | 228 } |
229 | 229 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
316 } | 316 } |
317 | 317 |
318 footer a | 318 footer a |
319 { | 319 { |
320 font-weight: 600; | 320 font-weight: 600; |
321 color: #333333; | 321 color: #333333; |
322 } | 322 } |
323 | 323 |
324 #language | 324 #language |
325 { | 325 { |
326 display: block; | 326 display: inline-block; |
Thomas Greiner
2015/09/08 09:59:52
Detail: This is redundant because this style is ap
saroyanm
2015/09/08 10:04:30
Done.
| |
327 margin-bottom: 34px; | 327 vertical-align: middle; |
328 margin-right: 10px; | |
329 } | |
330 | |
331 html[dir="rtl"] #language | |
332 { | |
333 margin-left: 10px; | |
334 margin-right: 0px; | |
335 } | |
336 | |
337 #social-media | |
338 { | |
339 display: inline-block; | |
340 vertical-align: middle; | |
341 margin: 10px 0px; | |
Thomas Greiner
2015/09/08 09:59:52
Why is there a "margin-top" and "margin-bottom"? `
saroyanm
2015/09/08 10:04:30
It's the case for smaller screens when the social
Thomas Greiner
2015/09/08 10:08:09
Ok, in that case "margin-top" should be sufficient
saroyanm
2015/09/08 10:12:17
No, because I'm aligning in the middle.
| |
342 } | |
343 | |
344 #social-media a | |
345 { | |
346 margin: 0px 3px; | |
328 } | 347 } |
329 | 348 |
330 #modal | 349 #modal |
331 { | 350 { |
332 padding: 17px 34px; | 351 padding: 17px 34px; |
333 margin: auto; | 352 margin: auto; |
334 background-color: #ffffff; | 353 background-color: #ffffff; |
335 position: fixed; | 354 position: fixed; |
336 top: 200px; | 355 top: 200px; |
337 left: 0px; | 356 left: 0px; |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
571 | 590 |
572 #content | 591 #content |
573 { | 592 { |
574 padding: 34px 0px 68px 0px; | 593 padding: 34px 0px 68px 0px; |
575 } | 594 } |
576 | 595 |
577 #footnotes | 596 #footnotes |
578 { | 597 { |
579 margin-top: 34px; | 598 margin-top: 34px; |
580 } | 599 } |
581 | |
582 footer | |
583 { | |
584 line-height: 24px; | |
585 } | |
586 } | 600 } |
OLD | NEW |