OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2014 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 |
| 18 body |
| 19 { |
| 20 margin: 0px; |
| 21 font-family: Segoe UI, Arial, sans-serif; |
| 22 font-size: 13px; |
| 23 color: #545454; |
| 24 background-color: #f8f6f2; |
| 25 background-image: url(background.png); |
| 26 } |
| 27 |
| 28 #clickhide-instructions, |
| 29 #clickhide-cancel, |
| 30 body.clickhide-active li |
| 31 { |
| 32 display: none; |
| 33 } |
| 34 |
| 35 body.clickhide-active #clickhide-instructions, |
| 36 body.clickhide-active #clickhide-cancel |
| 37 { |
| 38 display: block; |
| 39 } |
| 40 |
| 41 body.local #clickhide |
| 42 { |
| 43 display: none; |
| 44 } |
| 45 |
| 46 header |
| 47 { |
| 48 height: 45px; |
| 49 margin-bottom: 40px; |
| 50 border-bottom: 1px solid #e1ddd8; |
| 51 background-image: url(background-main.png); |
| 52 } |
| 53 |
| 54 #logo |
| 55 { |
| 56 position: relative; |
| 57 top: 20px; |
| 58 width: 55px; |
| 59 height: 55px; |
| 60 margin: 0px auto; |
| 61 background-image: url(abp-icon-big.png); |
| 62 background-size: 100%; |
| 63 } |
| 64 |
| 65 #wrapper |
| 66 { |
| 67 padding: 0px 20px; |
| 68 } |
| 69 |
| 70 footer |
| 71 { |
| 72 min-width: 150px; |
| 73 cursor: pointer; |
| 74 padding: 10px 35px; |
| 75 border-top: 1px solid #e1ddd8; |
| 76 background-image: url(background-main.png); |
| 77 } |
| 78 |
| 79 footer:hover |
| 80 { |
| 81 background: -webkit-linear-gradient(top, rgba(70, 50, 0, 0.1), rgba(70, 50, 0,
0.1)), |
| 82 url(background-main.png); |
| 83 background: linear-gradient(to bottom, rgba(70, 50, 0, 0.1), rgba(70, 50, 0, 0
.1)), |
| 84 url(background-main.png); |
| 85 } |
| 86 |
| 87 footer .icon |
| 88 { |
| 89 background-position: -50px -65px; |
| 90 } |
| 91 |
| 92 ul |
| 93 { |
| 94 margin: 0px; |
| 95 padding: 0px; |
| 96 } |
| 97 |
| 98 li |
| 99 { |
| 100 cursor: pointer; |
| 101 list-style-type: none; |
| 102 white-space: nowrap; |
| 103 border-top: 1px dashed #a5a4a1; |
| 104 } |
| 105 |
| 106 li span |
| 107 { |
| 108 padding-right: 70px; |
| 109 padding-left: 3px; |
| 110 } |
| 111 |
| 112 li .collapse span |
| 113 { |
| 114 padding-right: 120px; |
| 115 } |
| 116 |
| 117 li ul |
| 118 { |
| 119 margin-left: 35px; |
| 120 } |
| 121 |
| 122 li li |
| 123 { |
| 124 cursor: default; |
| 125 padding: 10px 15px; |
| 126 } |
| 127 |
| 128 .menu-item |
| 129 { |
| 130 padding: 10px 0px 10px 15px; |
| 131 } |
| 132 |
| 133 .menu-item:hover |
| 134 { |
| 135 background-color: #ece7df; |
| 136 } |
| 137 |
| 138 .checkbox-item, .checkbox-item label |
| 139 { |
| 140 cursor: pointer; |
| 141 } |
| 142 |
| 143 .icon |
| 144 { |
| 145 display: inline-block; |
| 146 width: 15px; |
| 147 height: 15px; |
| 148 margin: 1px 15px 0 0; |
| 149 vertical-align: top; |
| 150 background-image: url(popup.png); |
| 151 } |
| 152 |
| 153 #clickhide .icon, |
| 154 #clickhide-cancel .icon |
| 155 { |
| 156 background-position: -50px -33px; |
| 157 } |
| 158 |
| 159 #clickhide-instructions |
| 160 { |
| 161 margin: 10px 15px; |
| 162 } |
| 163 |
| 164 #blockable .icon |
| 165 { |
| 166 background-position: -66px -17px; |
| 167 } |
| 168 |
| 169 #report-issue .icon |
| 170 { |
| 171 background-position: -50px -81px; |
| 172 } |
| 173 |
| 174 label |
| 175 { |
| 176 vertical-align: middle; |
| 177 } |
OLD | NEW |