Left: | ||
Right: |
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-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 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 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
72 margin: 0; | 72 margin: 0; |
73 padding: 0; | 73 padding: 0; |
74 list-style-type: none; | 74 list-style-type: none; |
75 } | 75 } |
76 | 76 |
77 header | 77 header |
78 { | 78 { |
79 background-image: url(background.png); | 79 background-image: url(background.png); |
80 background-repeat: repeat-x; | 80 background-repeat: repeat-x; |
81 width: 100%; | 81 width: 100%; |
82 padding: 40px 0 0 0; | 82 padding: 25px 0 0 0; |
83 } | 83 } |
84 | 84 |
85 header h1 | 85 header h1 |
86 { | 86 { |
87 font-size: 24px; | 87 font-size: 24px; |
88 font-weight: normal; | 88 font-weight: normal; |
89 color: #57ab5b; | 89 color: #57ab5b; |
90 text-align: center; | 90 text-align: center; |
91 margin: 21px auto; | 91 margin: 21px auto; |
92 padding: 16px 0 14px 0; | 92 padding: 16px 0 14px 0; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
145 } | 145 } |
146 | 146 |
147 section > p | 147 section > p |
148 { | 148 { |
149 margin: 15px 0 0 0; | 149 margin: 15px 0 0 0; |
150 } | 150 } |
151 | 151 |
152 #logo | 152 #logo |
153 { | 153 { |
154 margin: 0 auto; | 154 margin: 0 auto; |
155 height: 100px; | 155 height: 128px; |
156 width: 99px; | 156 width: 128px; |
157 display: block; | 157 display: block; |
158 background-image: url(abp-icon-big.png); | 158 background-image: url(abp-icon-big.png); |
Thomas Greiner
2015/02/27 10:51:23
For consistency's sake and to avoid duplication I'
Wladimir Palant
2015/02/27 16:17:25
I considered that already. However, avoiding dupli
Thomas Greiner
2015/02/27 16:22:49
Ok, I'm fine with addressing this later on.
| |
159 background-repeat: no-repeat; | 159 background-repeat: no-repeat; |
160 } | 160 } |
161 | 161 |
162 #can-do-more | 162 #can-do-more |
163 { | 163 { |
164 max-width: 960px; | 164 max-width: 960px; |
165 padding: 40px 0px 0px 0px; | 165 padding: 40px 0px 0px 0px; |
166 border-bottom: 4px solid #968D81; | 166 border-bottom: 4px solid #968D81; |
167 } | 167 } |
168 | 168 |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
581 background-image: url(donate.png); | 581 background-image: url(donate.png); |
582 background-repeat: repeat-x; | 582 background-repeat: repeat-x; |
583 } | 583 } |
584 | 584 |
585 footer | 585 footer |
586 { | 586 { |
587 margin: 0 auto 30px; | 587 margin: 0 auto 30px; |
588 max-width: 960px; | 588 max-width: 960px; |
589 text-align: center; | 589 text-align: center; |
590 } | 590 } |
OLD | NEW |