| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 position: fixed; | 359 position: fixed; |
| 360 top: 200px; | 360 top: 200px; |
| 361 left: 0px; | 361 left: 0px; |
| 362 right: 0px; | 362 right: 0px; |
| 363 width: 800px; | 363 width: 800px; |
| 364 z-index: 2; | 364 z-index: 2; |
| 365 } | 365 } |
| 366 | 366 |
| 367 #overlay | 367 #overlay |
| 368 { | 368 { |
| 369 position: absolute; | 369 position: fixed; |
| 370 top: 0; | 370 top: 0; |
| 371 left: 0; | 371 left: 0; |
| 372 height: 100%; | 372 height: 100%; |
| 373 width: 100%; | 373 width: 100%; |
| 374 background-color: rgba(0, 0, 0, 0.5); | 374 background-color: rgba(0, 0, 0, 0.5); |
| 375 z-index: 1; | 375 z-index: 1; |
| 376 } | 376 } |
| 377 | 377 |
| 378 #modal-close | 378 #modal-close |
| 379 { | 379 { |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 #content | 595 #content |
| 596 { | 596 { |
| 597 padding: 34px 20px 68px 20px; | 597 padding: 34px 20px 68px 20px; |
| 598 } | 598 } |
| 599 | 599 |
| 600 #footnotes | 600 #footnotes |
| 601 { | 601 { |
| 602 margin-top: 34px; | 602 margin-top: 34px; |
| 603 } | 603 } |
| 604 } | 604 } |
| OLD | NEW |