| LEFT | RIGHT |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 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 /** This should be unnecessary in Gecko 2.0 and above. */ | |
| 19 *[hidden] | |
| 20 { | |
| 21 display: none !important; | |
| 22 } | |
| 23 | |
| 24 body | 18 body |
| 25 { | 19 { |
| 26 font-family: Arial, Helvetica, sans-serif; | 20 font-family: Arial, Helvetica, sans-serif; |
| 27 font-size: 14px; | 21 font-size: 14px; |
| 28 line-height: 140%; | 22 line-height: 140%; |
| 29 color: #000000; | 23 color: #000000; |
| 30 background-color: #f8f6f2; | 24 background-color: #f8f6f2; |
| 31 background-image: url(/skin/background.png); | 25 background-image: url(/skin/background.png); |
| 32 margin: 0 auto; | 26 margin: 0 auto; |
| 33 padding: 0; | 27 padding: 0; |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 font-size: 22px; | 111 font-size: 22px; |
| 118 color: #cc0000; | 112 color: #cc0000; |
| 119 margin: 30px 0px 20px; | 113 margin: 30px 0px 20px; |
| 120 } | 114 } |
| 121 | 115 |
| 122 #features-title::after | 116 #features-title::after |
| 123 { | 117 { |
| 124 content: ":"; | 118 content: ":"; |
| 125 } | 119 } |
| 126 | 120 |
| 127 .feature | 121 .feature:not([hidden]) |
| 128 { | 122 { |
| 129 display: block; | 123 display: block; |
| 130 list-style-type: none; | 124 list-style-type: none; |
| 131 padding-bottom: 20px; | 125 padding-bottom: 20px; |
| 132 } | 126 } |
| 133 | 127 |
| 134 .feature-image, .feature-description | 128 .feature-image, .feature-description |
| 135 { | 129 { |
| 136 display: inline-block; | 130 display: inline-block; |
| 137 *display: inline; /* IE6 inline-block fix */ | 131 *display: inline; /* IE6 inline-block fix */ |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 } | 455 } |
| 462 } | 456 } |
| 463 | 457 |
| 464 @media (max-height: 700px) | 458 @media (max-height: 700px) |
| 465 { | 459 { |
| 466 body | 460 body |
| 467 { | 461 { |
| 468 font-size: 16px; | 462 font-size: 16px; |
| 469 } | 463 } |
| 470 } | 464 } |
| LEFT | RIGHT |