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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
135 font-weight: normal; | 135 font-weight: normal; |
136 text-align: center; | 136 text-align: center; |
137 margin: 0; | 137 margin: 0; |
138 padding: 0; | 138 padding: 0; |
139 } | 139 } |
140 | 140 |
141 section | 141 section |
142 { | 142 { |
143 margin: 0 auto; | 143 margin: 0 auto; |
144 margin-bottom: 30px; | 144 margin-bottom: 30px; |
145 max-width: 760px; | 145 max-width: 960px; |
saroyanm
2015/10/07 17:26:40
You don't need to specify different max-width for
Thomas Greiner
2015/10/08 14:59:54
Done.
I'd suggest to tackle any other style oddit
| |
146 background-image: url(background.png); | 146 background-image: url(background.png); |
147 padding: 40px 100px; | 147 padding: 40px 100px; |
148 box-sizing: border-box; | |
148 } | 149 } |
149 | 150 |
150 #general | 151 #general |
151 { | 152 { |
152 display: table; | 153 display: table; |
153 padding-left: 0px; | 154 padding-left: 0px; |
154 padding-right: 0px; | 155 padding-right: 0px; |
155 max-width: 960px; | |
156 } | 156 } |
157 | 157 |
158 #general > div | 158 #general > div |
159 { | 159 { |
160 display: table-cell; | 160 display: table-cell; |
161 width: 50%; | 161 width: 50%; |
162 vertical-align: top; | 162 vertical-align: top; |
163 padding: 0px 50px; | 163 padding: 0px 50px; |
164 border: dashed 0 #969085; | 164 border: dashed 0 #969085; |
165 -webkit-border-start-width: 1px; | 165 -webkit-border-start-width: 1px; |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
322 width: 59px; | 322 width: 59px; |
323 height: 59px; | 323 height: 59px; |
324 margin: 10px 0px; | 324 margin: 10px 0px; |
325 -webkit-margin-start: 20px; | 325 -webkit-margin-start: 20px; |
326 -moz-margin-start: 20px; | 326 -moz-margin-start: 20px; |
327 } | 327 } |
328 | 328 |
329 #share | 329 #share |
330 { | 330 { |
331 background-image: url(background-share.png); | 331 background-image: url(background-share.png); |
332 max-width: 760px; | |
333 text-align: center; | 332 text-align: center; |
334 font-family: CreteRound, Helvetica, Arial, sans-serif; | 333 font-family: CreteRound, Helvetica, Arial, sans-serif; |
335 } | 334 } |
336 | 335 |
337 #share h2 | 336 #share h2 |
338 { | 337 { |
339 margin-bottom: 30px; | 338 margin-bottom: 30px; |
340 } | 339 } |
341 | 340 |
342 #share h2, | 341 #share h2, |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
691 #can-do-more .feature-description-textblock | 690 #can-do-more .feature-description-textblock |
692 { | 691 { |
693 text-align: start; | 692 text-align: start; |
694 } | 693 } |
695 | 694 |
696 .toggle | 695 .toggle |
697 { | 696 { |
698 margin-top: 14px; | 697 margin-top: 14px; |
699 } | 698 } |
700 } | 699 } |
LEFT | RIGHT |