| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
| 17 | 17 |
| 18 @font-face | |
| 19 { | |
| 20 font-family: "Source Sans Pro"; | |
| 21 src: url(fonts/SourceSansPro-Light.woff); | |
| 22 /* local("Ø") forces using no local font called Source Sans Pro */ | |
| 23 src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff"); | |
| 24 font-weight: 300; | |
| 25 font-style: normal; | |
| 26 } | |
| 27 | |
| 28 @font-face | |
| 29 { | |
| 30 font-family: "Source Sans Pro"; | |
| 31 src: url(fonts/SourceSansPro-Regular.woff); | |
| 32 /* local("Ø") forces using no local font called Source Sans Pro */ | |
| 33 src: local("Ø"), url(fonts/SourceSansPro-Regular.woff) format("woff"); | |
| 34 font-style: normal; | |
| 35 } | |
| 36 | |
| 37 @font-face | |
| 38 { | |
| 39 font-family: "Source Sans Pro"; | |
| 40 src: url(fonts/SourceSansPro-bold.woff); | |
| 41 /* local("Ø") forces using no local font called Source Sans Pro */ | |
| 42 src: local("Ø"), url(fonts/SourceSansPro-bold.woff) format("woff"); | |
| 43 font-weight: 700; | |
| 44 font-style: normal; | |
| 45 } | |
| 46 | |
| 47 html | 18 html |
| 48 { | 19 { |
| 49 font-size: 16px; | 20 font-size: 16px; |
| 50 } | 21 } |
| 51 | 22 |
| 52 body | 23 body |
| 53 { | 24 { |
| 54 display: flex; | 25 display: flex; |
| 55 flex-direction: column; | 26 flex-direction: column; |
| 56 align-items: center; | 27 align-items: center; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 header > .title | 61 header > .title |
| 91 { | 62 { |
| 92 display: flex; | 63 display: flex; |
| 93 flex-direction: column; | 64 flex-direction: column; |
| 94 } | 65 } |
| 95 | 66 |
| 96 .title > h1 | 67 .title > h1 |
| 97 { | 68 { |
| 98 margin: 0rem; | 69 margin: 0rem; |
| 99 font-size: 1.5rem; | 70 font-size: 1.5rem; |
| 100 font-weight: 100; | 71 font-weight: 300; |
| 101 } | 72 } |
| 102 | 73 |
| 103 .title > h1 > strong | 74 .title > h1 > strong |
| 104 { | 75 { |
| 105 font-weight: 700; | 76 font-weight: 700; |
| 106 } | 77 } |
| 107 | 78 |
| 108 .title > p | 79 .title > p |
| 109 { | 80 { |
| 110 margin: 0rem; | 81 margin: 0rem; |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 .modalContent | 298 .modalContent |
| 328 { | 299 { |
| 329 flex-grow: 1; | 300 flex-grow: 1; |
| 330 display: flex; | 301 display: flex; |
| 331 flex-direction: column; | 302 flex-direction: column; |
| 332 align-items: flex-end; | 303 align-items: flex-end; |
| 333 background-color: #FFFFFF; | 304 background-color: #FFFFFF; |
| 334 border: 1px solid #CDCDCD; | 305 border: 1px solid #CDCDCD; |
| 335 padding: 2rem; | 306 padding: 2rem; |
| 336 } | 307 } |
| OLD | NEW |