Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
195 display: inline-block; | 195 display: inline-block; |
196 padding: 6px 16px; | 196 padding: 6px 16px; |
197 background: -webkit-linear-gradient(bottom, #294e76, #6b92be); | 197 background: -webkit-linear-gradient(bottom, #294e76, #6b92be); |
198 background: linear-gradient(to top, #294e76, #6b92be); | 198 background: linear-gradient(to top, #294e76, #6b92be); |
199 text-decoration: none; | 199 text-decoration: none; |
200 text-align: start; | 200 text-align: start; |
201 } | 201 } |
202 | 202 |
203 #abb-promotion-block a > div | 203 #abb-promotion-block a > div |
204 { | 204 { |
205 display: inline-block; | 205 display: table-cell; |
Thomas Greiner
2015/09/16 14:09:08
This causes the text inside to be moved below the
saroyanm
2015/09/16 14:11:58
Thanks for noticing, Done.
| |
206 vertical-align: middle; | 206 vertical-align: middle; |
207 padding: 6px; | 207 padding: 6px; |
208 } | 208 } |
209 | 209 |
210 #abb-promotion-block .title | 210 #abb-promotion-block .title |
211 { | 211 { |
212 font-size: 21px; | 212 font-size: 21px; |
213 color: #ffffff; | 213 color: #ffffff; |
214 font-weight: bold; | 214 font-weight: bold; |
215 } | 215 } |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
694 background-image: url(donate.png); | 694 background-image: url(donate.png); |
695 background-repeat: repeat-x; | 695 background-repeat: repeat-x; |
696 } | 696 } |
697 | 697 |
698 footer | 698 footer |
699 { | 699 { |
700 margin: 0 auto 30px; | 700 margin: 0 auto 30px; |
701 max-width: 960px; | 701 max-width: 960px; |
702 text-align: center; | 702 text-align: center; |
703 } | 703 } |
LEFT | RIGHT |