LEFT | RIGHT |
(no file at all) | |
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 font-weight: 300; | |
22 font-style: normal; | |
23 src: url("fonts/Source-Sans-Pro/300.woff2") format("woff2"); | |
24 } | |
25 | |
26 @font-face | |
27 { | |
28 font-family: "Source Sans Pro"; | |
29 font-weight: 400; | |
30 font-style: normal; | |
31 src: url("fonts/Source-Sans-Pro/400.woff2") format("woff2"); | |
32 } | |
33 | |
34 @font-face | |
35 { | |
36 font-family: "Source Sans Pro"; | |
37 font-weight: 700; | |
38 font-style: normal; | |
39 src: url("fonts/Source-Sans-Pro/700.woff2") format("woff2"); | |
40 ; | |
41 } | |
42 | |
43 body, | 18 body, |
44 input | 19 input |
45 { | 20 { |
46 font-family: "Source Sans Pro", sans-serif; | 21 font-family: "Source Sans Pro", sans-serif; |
47 font-size: 14px; | 22 font-size: 14px; |
48 } | 23 } |
49 | 24 |
50 body | 25 body |
51 { | 26 { |
52 text-align: center; | 27 text-align: center; |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 | 166 |
192 input:checked + .toggle-image | 167 input:checked + .toggle-image |
193 { | 168 { |
194 background-image: url(mobile/toggle.svg#on); | 169 background-image: url(mobile/toggle.svg#on); |
195 } | 170 } |
196 | 171 |
197 button | 172 button |
198 { | 173 { |
199 width: 100%; | 174 width: 100%; |
200 border: none; | 175 border: none; |
201 font-weight: 600; | 176 font-weight: 700; |
202 text-transform: uppercase; | 177 text-transform: uppercase; |
203 color: #099DD1; | 178 color: #099DD1; |
204 background: none; | 179 background: none; |
205 } | 180 } |
206 | 181 |
207 button.primary, | 182 button.primary, |
208 button.secondary | 183 button.secondary |
209 { | 184 { |
210 height: auto; | 185 height: auto; |
211 margin: 5px 0; | 186 margin: 5px 0; |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 { | 340 { |
366 background-color: #BBBBBB; | 341 background-color: #BBBBBB; |
367 mask: url(mobile/checkmark.svg#default) center/cover no-repeat; | 342 mask: url(mobile/checkmark.svg#default) center/cover no-repeat; |
368 } | 343 } |
369 | 344 |
370 #dialog-recommended > button | 345 #dialog-recommended > button |
371 { | 346 { |
372 border-width: 1px 0 0 0; | 347 border-width: 1px 0 0 0; |
373 text-align: center; | 348 text-align: center; |
374 } | 349 } |
LEFT | RIGHT |