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 | 18 @font-face |
19 { | 19 { |
20 font-family: "Source Sans Pro"; | 20 font-family: "Source Sans Pro"; |
21 src: url(fonts/SourceSansPro-Light.woff); | 21 src: url(fonts/SourceSansPro-Light.woff); |
22 /* local("Ø") forces using no local font called Source Sans Pro */ | 22 /* local("Ø") forces using no local font called Source Sans Pro */ |
23 src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff"); | 23 src: local("Ø"), url("fonts/Source-Sans-Pro/300.woff2") format("woff2"), |
| 24 url(fonts/SourceSansPro-Light.woff) format("woff"); |
24 font-weight: 300; | 25 font-weight: 300; |
25 font-style: normal; | 26 font-style: normal; |
26 } | 27 } |
27 | 28 |
28 @font-face | 29 @font-face |
29 { | 30 { |
30 font-family: "Source Sans Pro"; | 31 font-family: "Source Sans Pro"; |
31 src: url(fonts/SourceSansPro-Regular.woff); | 32 src: url(fonts/SourceSansPro-Regular.woff); |
32 /* local("Ø") forces using no local font called Source Sans Pro */ | 33 /* local("Ø") forces using no local font called Source Sans Pro */ |
33 src: local("Ø"), url(fonts/SourceSansPro-Regular.woff) format("woff"); | 34 src: local("Ø"), url("fonts/Source-Sans-Pro/400.woff2") format("woff2"), |
| 35 url(fonts/SourceSansPro-Regular.woff) format("woff"); |
34 font-style: normal; | 36 font-style: normal; |
35 } | 37 } |
36 | 38 |
37 @font-face | 39 @font-face |
38 { | 40 { |
39 font-family: "Source Sans Pro"; | 41 font-family: "Source Sans Pro"; |
40 src: url(fonts/SourceSansPro-bold.woff); | 42 src: url(fonts/SourceSansPro-bold.woff); |
41 /* local("Ø") forces using no local font called Source Sans Pro */ | 43 /* local("Ø") forces using no local font called Source Sans Pro */ |
42 src: local("Ø"), url(fonts/SourceSansPro-bold.woff) format("woff"); | 44 src: local("Ø"), url("fonts/Source-Sans-Pro/700.woff2") format("woff2"), |
| 45 url(fonts/SourceSansPro-bold.woff) format("woff"); |
43 font-weight: 700; | 46 font-weight: 700; |
44 font-style: normal; | 47 font-style: normal; |
45 } | 48 } |
46 | 49 |
47 html | 50 html |
48 { | 51 { |
49 font-size: 16px; | 52 font-size: 16px; |
50 } | 53 } |
51 | 54 |
52 body | 55 body |
(...skipping 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1510 font-size: 1rem; | 1513 font-size: 1rem; |
1511 color: #077CA6; | 1514 color: #077CA6; |
1512 background-color: #E1F2FA; | 1515 background-color: #E1F2FA; |
1513 } | 1516 } |
1514 | 1517 |
1515 #notification strong | 1518 #notification strong |
1516 { | 1519 { |
1517 flex: 1; | 1520 flex: 1; |
1518 text-align: center; | 1521 text-align: center; |
1519 } | 1522 } |
OLD | NEW |