OLD | NEW |
| 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * |
| 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 |
| 7 * published by the Free Software Foundation. |
| 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 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/>. |
| 16 */ |
| 17 |
1 @font-face | 18 @font-face |
2 { | 19 { |
3 font-family: "Source Sans Pro"; | 20 font-family: "Source Sans Pro"; |
4 src: url(fonts/SourceSansPro-Light.woff); | 21 src: url(fonts/SourceSansPro-Light.woff); |
5 /* local("Ø") forces using no local font called Source Sans Pro */ | 22 /* local("Ø") forces using no local font called Source Sans Pro */ |
6 src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff"); | 23 src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff"); |
7 font-weight: 300; | 24 font-weight: 300; |
8 font-style: normal; | 25 font-style: normal; |
9 } | 26 } |
10 | 27 |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 background-color: transparent; | 296 background-color: transparent; |
280 background-image: url(icons/checkbox.png); | 297 background-image: url(icons/checkbox.png); |
281 display: inline-block; | 298 display: inline-block; |
282 } | 299 } |
283 | 300 |
284 input[type="checkbox"]:checked, | 301 input[type="checkbox"]:checked, |
285 input[type="radio"]:checked | 302 input[type="radio"]:checked |
286 { | 303 { |
287 background-position: 0px 18px; | 304 background-position: 0px 18px; |
288 } | 305 } |
OLD | NEW |