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-present eyeo GmbH | 3 * Copyright (C) 2006-present 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 html | 47 html |
48 { | 48 { |
49 font-size: 16px; | 49 font-size: 16px; |
50 } | 50 } |
51 | 51 |
52 body | 52 body |
53 { | 53 { |
54 background-color: #F3F3F3; | 54 background-color: #F3F3F3; |
55 display: flex; | 55 display: flex; |
56 justify-content: center; | 56 justify-content: center; |
| 57 /* We force vertical scrollbars to keep the content centered */ |
| 58 overflow-y: scroll; |
57 margin: 1.2rem 0.3rem; | 59 margin: 1.2rem 0.3rem; |
58 font-family: "Source Sans Pro", sans-serif; | 60 font-family: "Source Sans Pro", sans-serif; |
59 font-size: 1.25rem; | 61 font-size: 1.25rem; |
60 color: #494949; | 62 color: #494949; |
61 } | 63 } |
62 | 64 |
63 h1 | 65 h1 |
64 { | 66 { |
65 font-size: 3rem; | 67 font-size: 3rem; |
66 font-weight: 300; | 68 font-weight: 300; |
(...skipping 1384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1451 | 1453 |
1452 #hide-notification::after | 1454 #hide-notification::after |
1453 { | 1455 { |
1454 background-color: #099DD1; | 1456 background-color: #099DD1; |
1455 } | 1457 } |
1456 | 1458 |
1457 #hide-notification:hover::after | 1459 #hide-notification:hover::after |
1458 { | 1460 { |
1459 background-color: #5CBCE1; | 1461 background-color: #5CBCE1; |
1460 } | 1462 } |
OLD | NEW |