OLD | NEW |
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 |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 { | 432 { |
433 display: inline-block; | 433 display: inline-block; |
434 width: 82px; | 434 width: 82px; |
435 height: 82px; | 435 height: 82px; |
436 } | 436 } |
437 | 437 |
438 #glass-pane, #share-popup | 438 #glass-pane, #share-popup |
439 { | 439 { |
440 visibility: hidden; | 440 visibility: hidden; |
441 opacity: 0; | 441 opacity: 0; |
442 -webkit-transition-property: opacity, visibility; | 442 -webkit-transition-property: opacity; |
443 transition-property: opacity, visibility; | 443 transition-property: opacity; |
444 } | 444 } |
445 | 445 |
446 #glass-pane | 446 #glass-pane |
447 { | 447 { |
448 position: fixed; | 448 position: fixed; |
449 top: 0; | 449 top: 0; |
450 right: 0; | 450 right: 0; |
451 bottom: 0; | 451 bottom: 0; |
452 left: 0; | 452 left: 0; |
453 background: rgba(0, 0, 0, 0.5) url(ajax-loader.gif) no-repeat 50% 50%; | 453 background: rgba(0, 0, 0, 0.5) url(ajax-loader.gif) no-repeat 50% 50%; |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
579 background-image: url(donate.png); | 579 background-image: url(donate.png); |
580 background-repeat: repeat-x; | 580 background-repeat: repeat-x; |
581 } | 581 } |
582 | 582 |
583 footer | 583 footer |
584 { | 584 { |
585 margin: 0 auto 30px; | 585 margin: 0 auto 30px; |
586 max-width: 960px; | 586 max-width: 960px; |
587 text-align: center; | 587 text-align: center; |
588 } | 588 } |
OLD | NEW |