| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
| 17 .clearfix | 17 |
|
Thomas Greiner
2013/07/15 17:37:01
Shouldn't be necessary anymore if you can get rid
| |
| 18 { | 18 @font-face { |
| 19 clear: both; | 19 font-family: 'CreteRound'; |
| 20 } | 20 font-style: normal; |
| 21 | 21 src: url(fonts/CreteRound-Regular.otf); |
| 22 * | 22 src: local ('Ø'), |
|
Thomas Greiner
2013/07/15 17:37:01
Why do you need to apply that to every single elem
| |
| 23 { | 23 /*local ('Ø') forces using no local font called CreteRound*/ |
| 24 margin: 0; | 24 url(fonts/CreteRound-Regular.otf) format('otf'); |
| 25 padding: 0; | 25 } |
| 26 | |
| 27 @font-face { | |
| 28 font-family: 'CreteRound'; | |
| 29 font-style: italic; | |
| 30 src: url(fonts/CreteRound-Italic.otf); | |
| 31 src: local ('Ø'), | |
| 32 /*local ('Ø') forces using no local font called CreteRound*/ | |
| 33 url(fonts/CreteRound-Italic.otf) format('otf'); | |
| 26 } | 34 } |
| 27 | 35 |
| 28 body | 36 body |
| 29 { | 37 { |
| 30 font-family: Segoe UI, Arial, Helvetica, sans-serif; | 38 font-family: Helvetica, Arial, sans-serif; |
| 31 font-size: 14px; | 39 font-size: 15px; |
| 32 line-height: 140%; | 40 line-height: 140%; |
| 33 color: #7f776b; | 41 color: #7f776b; |
| 34 background-color: #f8f6f2; | 42 background-color: #f8f6f2; |
| 35 background-image: url(background-main.png); | 43 background-image: url(background-main.png); |
| 44 margin: 0; | |
| 45 padding: 0; | |
| 36 } | 46 } |
| 37 | 47 |
| 38 a, a:link, a:visited | 48 a, a:link, a:visited |
| 39 { | 49 { |
| 40 color: #5a84b3; | 50 color: #5a84b3; |
| 41 text-decoration: underline; | 51 text-decoration: underline; |
| 42 font-style: italic; | 52 } |
| 43 } | 53 |
| 44 | 54 a:hover |
| 45 button, .arrow | 55 { |
|
Thomas Greiner
2013/07/15 17:37:01
.arrow doesn't exist anymore.
| |
| 56 text-decoration: none; | |
| 57 } | |
| 58 | |
| 59 button | |
| 46 { | 60 { |
| 47 cursor: pointer; | 61 cursor: pointer; |
| 48 } | 62 } |
| 49 | 63 |
| 64 ul | |
| 65 { | |
| 66 margin: 0; | |
| 67 padding: 0; | |
| 68 } | |
| 69 | |
| 50 li | 70 li |
| 51 { | 71 { |
| 72 margin: 0; | |
| 73 padding: 0; | |
| 52 list-style-type: none; | 74 list-style-type: none; |
| 53 | |
| 54 } | 75 } |
| 55 | 76 |
| 56 header | 77 header |
| 57 { | 78 { |
| 58 height: 200px; | |
| 59 background-image: url(background.png); | 79 background-image: url(background.png); |
| 60 background-repeat: repeat-x; | 80 background-repeat: repeat-x; |
| 61 width: 100%; | 81 width: 100%; |
| 62 padding: 40px 0 0 0; | 82 padding: 40px 0 0 0; |
| 63 } | 83 } |
| 64 | 84 |
| 65 header h1 | 85 header h1 |
| 66 { | 86 { |
| 67 font-size: 24px; | 87 font-size: 24px; |
| 68 font-weight: normal; | 88 font-weight: normal; |
| 69 margin: 0 auto; | 89 color: #57ab5b; |
| 70 display: block; | 90 text-align: center; |
| 71 color: #464746; | 91 margin: 21px auto; |
| 72 text-align: center; | 92 padding: 16px 0 14px 0; |
| 73 margin: 30px 0 0 0; | 93 border: 1px #57ab5b; |
| 74 | 94 border-style: dashed none; |
| 75 } | 95 /* border parallel fix - 957px is the value |
| 76 | 96 * closest to 960px(page width) which makes |
| 77 strong | 97 * the dashed border parallel |
| 78 { | 98 */ |
| 79 font-weight: 600; | 99 max-width: 957px; |
| 80 } | 100 } |
| 81 | 101 |
| 82 h2 { | 102 h1,h2,h3 |
| 83 font-size: 30px; | 103 { |
| 104 font-family: CreteRound, Helvetica, Arial, sans-serif; | |
| 105 } | |
| 106 | |
| 107 h2 | |
| 108 { | |
| 109 font-size: 26px; | |
| 84 font-weight: lighter; | 110 font-weight: lighter; |
| 85 color: #968d81; | 111 color: #968d81; |
| 86 line-height: 30px; | 112 line-height: 28px; |
| 87 | 113 text-align: center; |
| 88 } | 114 margin: 0; |
| 89 | 115 padding: 0; |
| 90 h3 { | 116 } |
| 91 font-size: 24px; | 117 |
| 92 color: #4d4d4d; | 118 h3 |
| 119 { | |
| 120 font-size: 22px; | |
| 121 color: #7F776B; | |
| 93 font-weight: normal; | 122 font-weight: normal; |
| 94 margin: 0 0 10px 0; | 123 margin: 0 0 10px 0; |
| 95 line-height: 30px; | 124 padding: 0; |
| 96 } | 125 line-height: 24px; |
| 97 | 126 } |
| 98 h4 { | 127 |
| 99 font-size: 16px; | 128 h4 |
| 129 { | |
| 130 font-size: 15px; | |
| 100 color: #7f776b; | 131 color: #7f776b; |
| 101 font-weight: normal; | 132 font-weight: normal; |
| 102 text-align: center; | 133 text-align: center; |
| 134 margin: 0; | |
| 135 padding: 0; | |
| 103 } | 136 } |
| 104 | 137 |
| 105 section | 138 section |
| 106 { | 139 { |
| 107 margin: 0 auto; | 140 margin: 0 auto; |
| 108 margin-bottom: 30px; | 141 margin-bottom: 30px; |
| 109 max-width: 760px; | 142 max-width: 760px; |
| 110 background-image: url(background.png); | 143 background-image: url(background.png); |
| 111 padding: 40px 100px; | 144 padding: 40px 100px; |
| 112 } | 145 } |
| 113 | 146 |
| 114 section > p | 147 section > p |
| 115 { | 148 { |
| 116 margin: 15px 0 0 0; | 149 margin: 15px 0 0 0; |
| 117 } | 150 } |
| 118 | 151 |
| 119 | 152 |
| 120 #logo | 153 #logo |
| 121 { | 154 { |
| 122 margin: 0 auto; | 155 margin: 0 auto; |
| 123 height: 100px; | 156 height: 100px; |
| 124 width: 99px; | 157 width: 99px; |
| 125 display: block; | 158 display: block; |
| 159 background-image: url(abp-icon-big.png); | |
| 160 background-repeat: no-repeat; | |
| 126 } | 161 } |
| 127 | 162 |
| 128 #can-do-more | 163 #can-do-more |
| 129 { | 164 { |
| 130 max-width: 960px !important; | 165 max-width: 960px; |
| 131 padding: 40px 0px 0px 0px !important; | 166 padding: 40px 0px 0px 0px; |
| 132 } | 167 } |
| 133 | 168 |
| 134 #can-do-more > h2 | 169 #can-do-more > h2 |
| 135 { | 170 { |
| 136 margin: 0 100px; | 171 margin: 0 100px; |
| 137 } | 172 } |
| 138 | 173 |
| 139 | 174 .fade |
| 140 #can-do-more > ul | 175 { |
| 141 { | 176 opacity: 0; |
| 177 } | |
| 178 | |
| 179 .hide | |
| 180 { | |
| 181 display: none; | |
| 182 } | |
| 183 | |
| 184 #can-do-more-overview | |
| 185 { | |
| 186 opacity: 1; | |
| 187 max-height: 10000px; | |
| 142 max-width: 760px; | 188 max-width: 760px; |
| 143 height: 140px; | 189 margin: 30px 100px 0 100px; |
| 144 margin: 40px 100px 0 100px; | 190 font-size: 0px; |
| 145 } | 191 /* hides appearing spacings because of |
| 146 | 192 * using display: inline-block*/ |
| 147 #can-do-more > ul > li | 193 cursor: pointer; |
| 148 { | 194 transition: opacity 0.3s step-end; |
|
Wladimir Palant
2013/10/05 09:15:59
Shouldn't it be ease-in-out rather than step-end h
| |
| 149 width: 250px; | 195 -moz-transition: opacity 0.3s ease-in-out; |
| 196 -webkit-transition: opacity 0.3s ease-in-out; | |
| 197 } | |
| 198 | |
| 199 #can-do-more.expanded > #can-do-more-overview, #can-do-more.expanded > #can-do-m ore-overview li, #can-do-more.expanded > #can-do-more-overview div, #can-do-more .expanded > #can-do-more-overview h4 | |
| 200 { | |
| 201 opacity: 0; | |
| 202 max-height: 0px; | |
| 203 width: 0; | |
| 204 margin: 0; | |
| 205 padding: 0; | |
| 206 transition: none; | |
| 207 -moz-transition: none; | |
| 208 -webkit-transition: none; | |
| 209 -o-transition: none; | |
|
Wladimir Palant
2013/10/05 09:15:59
We don't set -o-transition above, we shouldn't nee
| |
| 210 } | |
| 211 | |
| 212 #can-do-more-overview > li:hover | |
| 213 { | |
| 214 background-image: url("background-main.png"); | |
| 215 text-decoration: none; | |
| 216 } | |
| 217 | |
| 218 #can-do-more-overview > li | |
| 219 { | |
| 220 width: 230px; | |
| 150 height: 115px; | 221 height: 115px; |
| 151 float: left; | 222 display: inline-block; |
| 152 border-right: 1px dashed #c7c6c2; | 223 border-right: 1px dashed #c7c6c2; |
| 153 padding: 20px 0 0 0; | 224 padding: 20px 10px 0 10px; |
| 154 } | 225 vertical-align: top; |
| 155 | 226 text-decoration: underline; |
| 156 #can-do-more > ul > h3 | 227 -webkit-backface-visibility: hidden; |
| 157 { | 228 /* hides the 1px movement chrome bug |
| 158 margin: 20px 0 0 0; | 229 * which appears while transition. |
| 159 } | 230 */ |
| 160 | 231 } |
| 161 #can-do-more > ul > li > img | 232 |
| 233 #can-do-more-overview > li > div | |
| 162 { | 234 { |
| 163 width: 59px; | 235 width: 59px; |
| 164 height: 59px; | 236 height: 59px; |
| 165 display: block; | 237 display: block; |
| 166 margin: 0 auto; | 238 margin: 0 auto; |
| 167 } | 239 } |
| 168 | 240 |
| 169 #can-do-more > ul > li > h4 | 241 #can-do-more-overview > li > h4 |
| 170 { | 242 { |
| 171 margin: 10px 0 0 0; | 243 margin: 15px 0 0 0; |
| 172 } | 244 } |
| 173 | 245 |
| 174 #can-do-more #feature-first | 246 #can-do-more #feature-first |
| 175 { | 247 { |
| 176 border-left: 1px dashed #c7c6c2; | 248 border-left: 1px dashed #c7c6c2; |
| 177 } | 249 } |
| 178 | 250 |
| 251 .feature-malware-image | |
| 252 { | |
| 253 background-image: url(features/malware.png); | |
| 254 background-repeat: no-repeat; | |
| 255 } | |
| 256 | |
| 257 .feature-social-image | |
| 258 { | |
| 259 background-image: url(features/social.png); | |
| 260 background-repeat: no-repeat; | |
| 261 } | |
| 262 | |
| 263 .feature-tracking-image | |
| 264 { | |
| 265 background-image: url(features/tracking.png); | |
| 266 background-repeat: no-repeat; | |
| 267 } | |
| 268 | |
| 179 #can-do-more-expanded | 269 #can-do-more-expanded |
| 180 { | 270 { |
| 181 margin: 40px 100px 0 100px; | 271 opacity: 0; |
| 182 display: none; | 272 max-height: 0; |
| 183 } | 273 } |
| 184 | 274 |
| 185 #features | 275 #can-do-more.expanded > #can-do-more-expanded |
| 186 { | 276 { |
| 187 display: block; | 277 opacity: 1; |
| 278 max-height: 10000px; | |
| 279 margin: 30px 100px 0 100px; | |
| 280 transition: opacity 0.5s ease-in-out; | |
| 281 -moz-transition: opacity 0.5s ease-in-out; | |
| 282 -webkit-transition: opacity 0.5s ease-in-out; | |
| 283 transition-delay: 0.2s; | |
| 284 -webkit-transition-delay: 0.2s; | |
|
Wladimir Palant
2013/10/05 09:15:59
-moz-transition-delay seems to be missing here. Th
| |
| 285 } | |
| 286 | |
| 287 #features, .feature:not([hidden]), .feature-image, .feature-description, .featur e-description, .feature-description-textblock, .feature-description-textblock > span, .feature-image | |
| 288 { | |
| 289 width: 0; | |
| 290 height: 0; | |
| 291 margin: 0; | |
| 292 padding: 0; | |
| 293 transition: none; | |
| 294 -moz-transition: none; | |
| 295 -webkit-transition: none; | |
| 296 -o-transition: none; | |
| 297 } | |
| 298 | |
| 299 | |
| 300 #can-do-more.expanded #features,#can-do-more.expanded .feature:not([hidden]),#ca n-do-more.expanded .feature-image,#can-do-more.expanded .feature-description,#ca n-do-more.expanded .feature-description,#can-do-more.expanded .feature-descripti on-textblock,#can-do-more.expanded .feature-description-textblock > span,#can-do -more.expanded .feature-image | |
| 301 { | |
| 302 width: auto; | |
| 303 height: auto; | |
| 304 margin: auto; | |
| 305 padding: auto; | |
| 306 transition-property: all; | |
| 307 -moz-transition-property: all; | |
| 308 -webkit-transition-property: all; | |
| 309 -o-transition-property: all; | |
|
Wladimir Palant
2013/10/05 09:15:59
As above, -o-transition-property and -moz-transiti
| |
| 310 transition-duration: 0.5s; | |
| 311 -webkit-transition-duration: 0.5s; | |
| 312 transition-timing-function: ease-in-out; | |
| 313 -webkit-transition-timing-function: ease-in-out; | |
| 314 } | |
| 315 | |
| 316 #can-do-more.expanded #features | |
| 317 { | |
| 188 border-spacing: 10px; | 318 border-spacing: 10px; |
| 189 margin: 0px; | 319 margin: 0px; |
| 190 padding: 0px; | 320 padding: 0px; |
| 191 } | 321 } |
| 192 | 322 |
| 193 .feature:not([hidden]) | 323 #can-do-more.expanded .feature:not([hidden]) |
| 194 { | 324 { |
| 195 display: block; | 325 display: block; |
| 196 list-style-type: none; | 326 list-style-type: none; |
| 197 padding: 30px 0; | 327 padding: 30px 0; |
| 198 padding-bottom: 20px; | 328 padding-bottom: 20px; |
| 199 border-top: 1px dashed #c0bebb; | 329 border-top: 1px dashed #c0bebb; |
| 200 } | 330 } |
| 201 | 331 |
| 202 .feature-image, .feature-description | 332 #can-do-more.expanded .feature-image, #can-do-more.expanded .feature-description |
| 203 { | 333 { |
| 204 display: inline-block; | 334 display: inline-block; |
| 205 *display: inline; /* IE6 inline-block fix */ | 335 *display: inline; /* IE6 inline-block fix */ |
| 206 *zoom: 1; | 336 *zoom: 1; |
| 207 vertical-align: top; | 337 vertical-align: top; |
| 208 } | 338 } |
| 209 | 339 |
| 210 .feature-description | 340 #can-do-more.expanded .feature-description |
| 211 { | 341 { |
| 212 margin: 0px 0px 0 20px; | 342 margin: 0px 0px 0 20px; |
| 213 max-width: 624px; | 343 width: 625px; |
| 214 } | 344 max-width: 85%; |
| 215 | 345 } |
| 216 .feature-description-textblock | 346 |
| 217 { | 347 #can-do-more.expanded .feature-description-textblock |
| 218 max-width: 478px; | 348 { |
| 349 width: 480px; | |
| 350 max-width: 100%; | |
| 219 margin: 0 40px 0 0; | 351 margin: 0 40px 0 0; |
| 220 float: left; | 352 display: inline-block; |
|
Thomas Greiner
2013/07/15 17:37:01
Please avoid floats if possible.
| |
| 221 } | 353 } |
| 222 | 354 |
| 223 .feature-description-textblock > span | 355 #can-do-more.expanded .feature-description-textblock > span |
| 224 { | 356 { |
| 225 margin: 15px 0 0 0; | 357 margin: 15px 0 0 0; |
| 226 } | 358 } |
| 227 | 359 |
| 228 .feature-image | 360 #can-do-more.expanded .feature-image |
| 229 { | 361 { |
| 230 width: 59px; | 362 width: 59px; |
| 231 height: 59px; | 363 height: 59px; |
| 232 margin: 8px 0 10px 20px; | 364 margin: 8px 0 10px 20px; |
| 233 } | 365 } |
| 234 | 366 |
| 235 .feature button | |
| 236 { | |
| 237 cursor: pointer; | |
| 238 position: relative; | |
| 239 top: 0px; | |
| 240 padding: 5px 10px; | |
| 241 *padding: 2px 3px; | |
| 242 font-weight: none; | |
| 243 font-size: inherit; | |
| 244 color: white; | |
| 245 text-shadow: 2px 2px 2px #327d14; | |
| 246 border: none; | |
| 247 border-radius: 3px; | |
| 248 box-shadow: 0 1px 0 0 #486c15, 0 2px 0 0 #517422; | |
| 249 background-color: #62c52b; | |
| 250 background: -webkit-linear-gradient(top, #62c52b, #4f9d22); | |
| 251 background: -moz-linear-gradient(top, #62c52b, #4f9d22); | |
| 252 background: -o-linear-gradient(top, #62c52b, #4f9d22); | |
| 253 background: -ms-linear-gradient(top, #62c52b, #4f9d22); | |
| 254 background: linear-gradient(top, #62c52b, #4f9d22); | |
| 255 -webkit-transition: box-shadow 0.3s ease; | |
| 256 -moz-transition: box-shadow 0.3s ease; | |
| 257 -o-transition: box-shadow 0.3s ease; | |
| 258 -ms-transition: box-shadow 0.3s ease; | |
| 259 transition: box-shadow 0.3s ease; | |
| 260 } | |
| 261 | |
| 262 .feature button:hover | |
| 263 { | |
| 264 box-shadow: 0px 2px 7px #486c15, 0 1px 0 0 #486c15; | |
| 265 } | |
| 266 | |
| 267 .feature button:active | |
| 268 { | |
| 269 top: 3px; | |
| 270 top: 0px\9; | |
| 271 box-shadow: 0px 0px 7px #486c15; | |
| 272 background-color: #4f9d22; | |
| 273 background: -webkit-linear-gradient(bottom, #62c52b, #4f9d22); | |
| 274 background: -moz-linear-gradient(bottom, #62c52b, #4f9d22); | |
| 275 background: -o-linear-gradient(bottom, #62c52b, #4f9d22); | |
| 276 background: -ms-linear-gradient(bottom, #62c52b, #4f9d22); | |
| 277 background: linear-gradient(bottom, #62c52b, #4f9d22); | |
| 278 -webkit-transition: none; | |
| 279 -moz-transition: none; | |
| 280 -o-transition: none; | |
| 281 -ms-transition: none; | |
| 282 transition: none; | |
| 283 *zoom: 1; | |
| 284 } | |
| 285 | |
| 286 .feature button.disable | |
| 287 { | |
| 288 text-shadow: 2px 2px 2px #9d4f22; | |
| 289 box-shadow: 0 1px 0 0 #9d4f22, 0 2px 0 0 #999; | |
| 290 background-color: #c5622b; | |
| 291 background: -webkit-linear-gradient(top, #c5622b, #9d4f22); | |
| 292 background: -moz-linear-gradient(top, #c5622b, #9d4f22); | |
| 293 background: -o-linear-gradient(top, #c5622b, #9d4f22); | |
| 294 background: -ms-linear-gradient(top, #c5622b, #9d4f22); | |
| 295 background: linear-gradient(top, #c5622b, #9d4f22); | |
| 296 } | |
| 297 | |
| 298 .feature button.disable:hover | |
| 299 { | |
| 300 box-shadow: 0px 2px 7px #9d4f22, 0 1px 0 0 #9d4f22; | |
| 301 } | |
| 302 | |
| 303 .feature button.disable:active | |
| 304 { | |
| 305 top: 3px; | |
| 306 top: 0px\9; | |
| 307 box-shadow: 0px 0px 7px #9d4f22; | |
| 308 background-color: #9d4f22; | |
| 309 background: -webkit-linear-gradient(bottom, #c5622b, #9d4f22); | |
| 310 background: -moz-linear-gradient(bottom, #c5622b, #9d4f22); | |
| 311 background: -o-linear-gradient(bottom, #c5622b, #9d4f22); | |
| 312 background: -ms-linear-gradient(bottom, #c5622b, #9d4f22); | |
| 313 background: linear-gradient(bottom, #c5622b, #9d4f22); | |
| 314 -webkit-transition: none; | |
| 315 -moz-transition: none; | |
| 316 -o-transition: none; | |
| 317 -ms-transition: none; | |
| 318 transition: none; | |
| 319 *zoom: 1; | |
| 320 } | |
| 321 | |
| 322 #activate-features | 367 #activate-features |
| 323 { | 368 { |
| 324 width: 100%; | 369 width: 100%; |
| 325 height: 36px; | |
|
Thomas Greiner
2013/07/15 17:37:01
You should be able to avoid using fixed numbers fo
| |
| 326 background-image: url("background-candomore.png"); | 370 background-image: url("background-candomore.png"); |
| 327 margin: 30px 0 0 0; | 371 margin: 30px 0 0 0; |
| 328 padding: 14px 0 0 0; | 372 padding: 14px 0 14px 0; |
| 329 cursor: pointer; | 373 cursor: pointer; |
| 374 text-align: center; | |
| 375 white-space: nowrap; | |
| 376 } | |
| 377 | |
| 378 #activate-features-label | |
| 379 { | |
| 380 display: inline-block; | |
| 381 width: 86%; | |
| 330 color: #fff; | 382 color: #fff; |
| 331 font-size: 24px; | 383 font-size: 22px; |
| 384 text-align: center; | |
| 332 font-style: italic; | 385 font-style: italic; |
| 333 text-decoration: underline; | 386 font-family: CreteRound, Helvetica, Arial, sans-serif; |
| 334 text-align: center; | 387 -moz-transition: opacity 0.5s ease-in-out; |
| 388 transition: opacity 0.5s ease-in-out; | |
| 389 } | |
| 390 | |
| 391 #can-do-more.expanded #label-show-expanded | |
| 392 { | |
| 393 display: block; | |
| 394 } | |
| 395 | |
| 396 #can-do-more.expanded #label-show-overview | |
| 397 { | |
| 398 display: none; | |
| 399 } | |
| 400 | |
| 401 #label-show-expanded | |
| 402 { | |
| 403 display: none; | |
| 404 } | |
| 405 | |
| 406 #label-show-overview | |
| 407 { | |
| 408 display: block; | |
| 409 } | |
| 410 | |
| 411 #activate-features-label:hover | |
|
Thomas Greiner
2013/10/05 15:51:19
This is a weird behavior. It's neither restricted
| |
| 412 { | |
| 413 color: #1f6822; | |
| 414 } | |
| 415 | |
| 416 #can-do-more.expanded .arrow | |
| 417 { | |
| 418 background-image: url("arrow-up.png"); | |
| 419 } | |
| 420 | |
| 421 .arrow | |
| 422 { | |
| 423 width: 29px; | |
| 424 height: 22px; | |
| 425 vertical-align: bottom; | |
| 426 display: inline-block; | |
| 427 background-image: url("arrow-down.png"); | |
| 335 } | 428 } |
| 336 | 429 |
| 337 #share | 430 #share |
| 338 { | 431 { |
| 339 background-image: url(background-share.png); | 432 background-image: url(background-share.png); |
| 340 padding: 50px 140px 40px 140px !important; | 433 padding: 50px 100px 40px 100px; |
| 341 max-width: 680px; | 434 max-width: 760px; |
| 342 } | 435 text-align: center; |
| 343 | 436 font-family: CreteRound, Helvetica, Arial, sans-serif; |
| 344 #share > #donate-block | |
|
Thomas Greiner
2013/07/15 17:37:01
#donate-block should be unique even without |#shar
| |
| 345 { | |
| 346 margin: 0 0 0 0; | |
| 347 float: left; | |
| 348 } | |
| 349 | |
| 350 #share > #share-block | |
|
Thomas Greiner
2013/07/15 17:37:01
#share-block should be unique even without |#share
| |
| 351 { | |
| 352 margin: 0 0 0 0; | |
|
Thomas Greiner
2013/07/15 17:37:01
|margin: 0;| does the same.
| |
| 353 float: left; | |
| 354 max-width: 480px; | |
| 355 } | 437 } |
| 356 | 438 |
| 357 #share h2 | 439 #share h2 |
| 358 { | 440 { |
| 359 color: #fff; | 441 color: #fff; |
| 360 margin: 10px 8px 10px 0; | 442 margin: 0 0 30px 0; |
| 361 text-align: left; | 443 } |
| 444 | |
| 445 #share h2 > a | |
| 446 { | |
| 447 color: #fff; | |
| 448 } | |
| 449 | |
| 450 #share h2 > a:hover | |
| 451 { | |
| 452 color: #2e5075; | |
| 453 } | |
| 454 | |
| 455 #share span | |
| 456 { | |
| 457 color: #bed1e6; | |
| 458 text-align: center; | |
| 459 line-height: 34px; | |
| 460 font-size: 22px; | |
| 362 display: block; | 461 display: block; |
| 363 float: left; | 462 } |
| 364 vertical-align: middle; | 463 |
| 365 line-height: 38px; | 464 #donate:hover, .share-buttons a:hover |
| 366 } | 465 { |
| 367 | 466 -moz-box-shadow: 0px 0px 0px 2px #8ca7c4; |
| 368 #share-buttons > a > img | 467 -webkit-box-shadow: 0px 0px 0px 2px #8ca7c4; |
| 369 { | 468 box-shadow: 0px 0px 0px 2px #8ca7c4; |
| 370 width: 56px; | 469 border-radius: 30px; |
| 371 height: 56px; | 470 } |
| 372 } | 471 |
| 373 | 472 #donate-block span, #share-block span |
| 374 #share-buttons > a | 473 { |
| 375 { | 474 margin: 13px 20px 10px 20px; |
| 376 margin: 0 4px 0 0; | 475 } |
| 476 | |
| 477 #donate-block, #share-block | |
| 478 { | |
| 479 min-width: 250px; | |
| 480 display: inline-block; | |
| 481 vertical-align: top; | |
| 482 padding: 20px 0 0 0; | |
| 483 } | |
| 484 | |
| 485 #donate-block | |
| 486 { | |
| 487 border: 1px dashed #37506d; | |
| 488 border-style: none dashed; | |
| 489 width: 50%; | |
| 490 } | |
| 491 | |
| 492 #share-block | |
| 493 { | |
| 494 border-right: 1px dashed #37506d; | |
| 495 width: 49%; | |
| 496 } | |
| 497 | |
| 498 .share-buttons | |
| 499 { | |
| 500 margin: 6px 0 0 0; | |
| 501 cursor: pointer; | |
| 502 vertical-align: top; | |
| 503 /* because inline block creates | |
| 504 * space if not captured with | |
| 505 * font-size and line-height 0px | |
| 506 */ | |
| 507 font-size: 0px; | |
| 508 line-height: 0px; | |
| 509 } | |
| 510 | |
| 511 .share-buttons > a | |
| 512 { | |
| 513 width: 50px; | |
| 514 height: 50px; | |
| 515 margin: 0 8px; | |
| 377 text-decoration: none; | 516 text-decoration: none; |
| 378 } | 517 display: inline-block; |
| 379 | 518 } |
| 380 #share-buttons | 519 |
| 381 { | 520 html[lang^="zh_"] #share-chinese, |
| 382 width: auto; | 521 html:not([lang^="zh_"]) #share-general |
| 383 margin: 3px 0 0 0; | 522 { |
| 384 min-height: 59px; | 523 display: block; |
| 385 float: left; | 524 } |
|
Thomas Greiner
2013/07/15 17:37:01
Please try to avoid floats.
| |
| 386 cursor: pointer; | 525 |
| 526 html[lang^="zh_"] #share-general, | |
| 527 html:not([lang^="zh_"]) #share-chinese | |
| 528 { | |
| 529 display: none; | |
| 530 } | |
| 531 | |
| 532 #share-chinese > a | |
| 533 { | |
| 534 border-bottom: 2px solid transparent; | |
| 535 } | |
| 536 | |
| 537 #share-chinese > a:hover | |
| 538 { | |
| 539 -moz-box-shadow: none; | |
| 540 -webkit-box-shadow: none; | |
| 541 box-shadow: none; | |
| 542 border-radius: 0; | |
| 543 border-bottom: 2px solid #8CA7C4; | |
| 544 } | |
| 545 | |
| 546 #share-facebook | |
| 547 { | |
| 548 background-image: url(social/facebook.png); | |
| 549 background-repeat: no-repeat; | |
| 550 } | |
| 551 | |
| 552 #share-twitter | |
| 553 { | |
| 554 background-image: url(social/twitter.png); | |
| 555 background-repeat: no-repeat; | |
| 556 } | |
| 557 | |
| 558 #share-gplus | |
| 559 { | |
| 560 background-image: url(social/googleplus.png); | |
| 561 background-repeat: no-repeat; | |
| 562 } | |
| 563 | |
| 564 #share-renren | |
| 565 { | |
| 566 background-image: url(social/renren.png); | |
| 567 background-repeat: no-repeat; | |
| 568 } | |
| 569 | |
| 570 #share-weibo | |
| 571 { | |
| 572 background-image: url(social/weibo.png); | |
| 573 background-repeat: no-repeat; | |
| 387 } | 574 } |
| 388 | 575 |
| 389 #dataCorruptionWarning | 576 #dataCorruptionWarning |
| 390 { | 577 { |
| 391 font-size: 200%; | 578 font-size: 160%; |
| 392 line-height: 140%; | 579 border: 3px dashed red; |
| 393 margin: 20px; | 580 text-align: center; |
| 394 padding: 20px; | 581 } |
| 395 border: 3px solid red; | |
| 396 border-radius: 10px; | |
| 397 } | |
| 398 | |
| 399 /*social */ | |
|
Thomas Greiner
2013/07/15 17:37:01
Code Style:
/* social */
May even be unnecessary.
| |
| 400 | 582 |
| 401 #social ul | 583 #social ul |
| 402 { | 584 { |
| 403 list-style: none; | 585 list-style: none; |
| 404 display: inline-block; | 586 display: inline-block; |
| 405 padding: 0; | 587 padding: 0; |
| 406 margin: 0; | 588 margin: 0; |
| 407 } | 589 } |
| 408 | 590 |
| 409 #social:hover h1 | 591 #social:hover h1 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 454 | 636 |
| 455 #glass-pane | 637 #glass-pane |
| 456 { | 638 { |
| 457 position: fixed; | 639 position: fixed; |
| 458 top: 0; | 640 top: 0; |
| 459 right: 0; | 641 right: 0; |
| 460 bottom: 0; | 642 bottom: 0; |
| 461 left: 0; | 643 left: 0; |
| 462 background: rgba(0, 0, 0, 0.5) url(ajax-loader.gif) no-repeat 50% 50%; | 644 background: rgba(0, 0, 0, 0.5) url(ajax-loader.gif) no-repeat 50% 50%; |
| 463 z-index: 101; | 645 z-index: 101; |
| 464 | |
| 465 -webkit-transition-duration: 0.2s; | 646 -webkit-transition-duration: 0.2s; |
| 466 -moz-transition-duration: 0.2s; | 647 -moz-transition-duration: 0.2s; |
| 467 -o-transition-duration: 0.2s; | 648 -o-transition-duration: 0.2s; |
| 468 -ms-transition-duration: 0.2s; | 649 -ms-transition-duration: 0.2s; |
| 469 transition-duration: 0.2s; | 650 transition-duration: 0.2s; |
| 470 } | 651 } |
| 471 | 652 |
| 472 #share-popup | 653 #share-popup |
| 473 { | 654 { |
| 474 position: absolute; | 655 position: absolute; |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 490 | 671 |
| 491 #share-popup.visible | 672 #share-popup.visible |
| 492 { | 673 { |
| 493 -webkit-transition-duration: 0.15s; | 674 -webkit-transition-duration: 0.15s; |
| 494 -moz-transition-duration: 0.15s; | 675 -moz-transition-duration: 0.15s; |
| 495 -o-transition-duration: 0.15s; | 676 -o-transition-duration: 0.15s; |
| 496 -ms-transition-duration: 0.15s; | 677 -ms-transition-duration: 0.15s; |
| 497 transition-duration: 0.15s; | 678 transition-duration: 0.15s; |
| 498 } | 679 } |
| 499 | 680 |
| 500 | |
| 501 .toggle | 681 .toggle |
| 502 { | 682 { |
| 503 cursor: pointer; | 683 cursor: pointer; |
| 504 position: relative; | 684 position: relative; |
| 505 display: inline-block; | 685 display: inline-block; |
| 506 top: 50%; | 686 vertical-align: top; |
| 507 height: 22px; | 687 height: 22px; |
| 508 margin: 40px 0px 7px 0px; | 688 margin: 32px 0px 7px 0px; |
| 509 border-radius: 9999px; | 689 border-radius: 9999px; |
| 510 /*box-shadow: 0 0 0 1px #999;*/ | |
|
Thomas Greiner
2013/07/15 17:37:01
Remove this comment.
| |
| 511 border: 1px solid #999; | 690 border: 1px solid #999; |
| 512 overflow: hidden; | 691 overflow: hidden; |
| 513 -moz-user-select: none; | 692 -moz-user-select: none; |
| 514 -webkit-user-select: none; | 693 -webkit-user-select: none; |
| 515 user-select: none; | 694 user-select: none; |
| 516 float: left; | 695 } |
|
Thomas Greiner
2013/07/15 17:37:01
Please avoid using floats if possible.
| |
| 696 | |
| 697 .toggle:hover | |
| 698 { | |
| 699 -moz-box-shadow: 0px 0px 3px 0px #968d81; | |
| 700 -webkit-box-shadow: 0px 3px 0px 0px #968d81; | |
| 701 box-shadow: 0px 0px 3px 0px #968d81; | |
| 517 } | 702 } |
| 518 | 703 |
| 519 .toggle:active | 704 .toggle:active |
| 520 { | 705 { |
| 521 cursor: wait; | 706 cursor: wait; |
| 522 } | 707 } |
| 523 | 708 |
| 524 .toggle-on, .toggle-off | 709 .toggle-on, .toggle-off |
| 525 { | 710 { |
| 526 min-width: 42px; | 711 min-width: 42px; |
| 527 height: 100%; | 712 height: 100%; |
| 528 font-size: 11px; | 713 font-size: 11px; |
| 529 font-weight: 500; | 714 font-weight: 500; |
| 530 text-align: center; | 715 text-align: center; |
| 531 line-height: 23px; | 716 line-height: 23px; |
| 717 border-radius: 9999px; | |
| 718 -moz-border-radius: 9999px; | |
| 719 -webkit-border-radius: 9999px; | |
| 532 } | 720 } |
| 533 | 721 |
| 534 .toggle-on | 722 .toggle-on |
| 535 { | 723 { |
| 536 padding: 0px 30px 0px 10px; | 724 padding: 0px 30px 0px 10px; |
| 537 color: rgba(255,255,255, 0.8); | 725 color: rgba(255,255,255, 0.8); |
| 538 text-shadow: 1px 1px rgba(0,0,0,0.2); | 726 text-shadow: 1px 1px rgba(0,0,0,0.2); |
| 539 box-shadow: inset 2px 2px 6px rgba(0,0,0,0.2); | 727 box-shadow: inset 2px 2px 6px rgba(0,0,0,0.2); |
| 540 background: rgb(69,163,31); | 728 background: rgb(69,163,31); |
| 541 } | 729 } |
| 542 | 730 |
| 543 .toggle-off | 731 .toggle-off |
| 544 { | 732 { |
| 545 padding: 0px 10px 0px 30px; | 733 padding: 0px 10px 0px 30px; |
| 546 color: rgba(0,0,0,0.6); | 734 color: rgba(0,0,0,0.6); |
| 547 text-shadow: 1px 1px rgba(255,255,255,0.2); | 735 text-shadow: 1px 1px rgba(255,255,255,0.2); |
| 548 background: #cfcfcf; | 736 background: #cfcfcf; |
| 549 background: -moz-linear-gradient(top, #cfcfcf 0%, #f5f5f5 100%); | 737 background: -moz-linear-gradient(top, #cfcfcf 0%, #f5f5f5 100%); |
| 550 background: -webkit-linear-gradient(top, #cfcfcf 0%,#f5f5f5 100%); | 738 background: -webkit-linear-gradient(top, #cfcfcf 0%,#f5f5f5 100%); |
| 551 background: linear-gradient(to bottom, #cfcfcf 0%,#f5f5f5 100%); | 739 background: linear-gradient(to bottom, #cfcfcf 0%,#f5f5f5 100%); |
| 552 } | 740 } |
| 553 | 741 |
| 554 | |
| 555 .toggle-blob | 742 .toggle-blob |
| 556 { | 743 { |
| 557 position: absolute; | 744 position: absolute; |
| 558 top: 0px; | 745 top: 0px; |
| 559 right: 0px; | 746 right: 0px; |
| 560 height: 100%; | 747 height: 100%; |
| 561 width: 22px; | 748 width: 22px; |
| 562 border-radius: 50px; | 749 border-radius: 50px; |
| 563 box-shadow: 1px 1px 2px #888; | |
| 564 background: #cfcfcf; | 750 background: #cfcfcf; |
| 565 background: -moz-linear-gradient(bottom, #cfcfcf 0%, #f5f5f5 100%); | 751 background: -moz-linear-gradient(bottom, #cfcfcf 0%, #f5f5f5 100%); |
| 566 background: -webkit-linear-gradient(bottom, #cfcfcf 0%,#f5f5f5 100%); | 752 background: -webkit-linear-gradient(bottom, #cfcfcf 0%,#f5f5f5 100%); |
| 567 background: linear-gradient(to top, #cfcfcf 0%,#f5f5f5 100%); | 753 background: linear-gradient(to top, #cfcfcf 0%,#f5f5f5 100%); |
| 754 box-shadow: 1px 1px 2px #888; | |
| 568 } | 755 } |
| 569 | 756 |
| 570 .off .toggle-on | 757 .off .toggle-on |
| 571 { | 758 { |
| 572 margin-top: -22px; | 759 margin-top: -22px; |
| 573 } | 760 } |
| 574 | 761 |
| 575 .off .toggle-blob | 762 .off .toggle-blob |
| 576 { | 763 { |
| 577 left: 0px; | 764 left: 0px; |
| 578 right: auto; | 765 right: auto; |
| 579 } | 766 } |
| 580 | 767 |
| 581 #donate | 768 #donate |
| 582 { | 769 { |
| 583 height: 24px; | 770 height: 21px; |
| 584 display: block; | 771 display: inline-block; |
| 585 float: left; | 772 margin: 15px 0px 2px 0px; |
|
Thomas Greiner
2013/07/15 17:37:01
Please avoid floats if possible.
| |
| 586 margin: 15px 12px 10px 4px; | |
| 587 font-size: 16px; | 773 font-size: 16px; |
| 588 line-height: 24px; | 774 color: #003366; |
| 589 color: #003366 !important; | |
| 590 cursor: pointer; | 775 cursor: pointer; |
| 591 font-weight: bold; | 776 font-weight: bold; |
| 592 padding: 3px 16px; | 777 padding: 5px 18px; |
| 593 text-decoration: none; | 778 text-decoration: none; |
| 594 border-radius: 20px; | 779 border-radius: 20px; |
| 595 border: 1px solid #FF9933; | 780 border: 1px solid #FF9933; |
| 596 overflow: hidden; | 781 overflow: hidden; |
| 597 font-family: arial, sans-serif; | 782 font-family: arial, sans-serif; |
| 598 background-image: url(donate.png); | 783 background-image: url(donate.png); |
| 599 background-repeat: repeat-x; | 784 background-repeat: repeat-x; |
| 600 } | 785 } |
| 601 | 786 |
| 602 | 787 footer |
| 603 /* Adjust font size on smaller screens */ | 788 { |
|
Thomas Greiner
2013/07/15 17:37:01
Why do you keep this portion? You're not using it
| |
| 604 @media (max-height: 800px) | 789 margin: 0 auto 30px; |
| 605 { | 790 max-width: 960px; |
| 606 body | 791 text-align: center; |
| 607 { | 792 } |
| 608 /*font-size: 19px;*/ | |
| 609 } | |
| 610 } | |
| 611 | |
| 612 @media (max-height: 750px) | |
| 613 { | |
| 614 body | |
| 615 { | |
| 616 /*font-size: 17px;*/ | |
| 617 } | |
| 618 } | |
| 619 | |
| 620 @media screen and (max-width: 700px) | |
| 621 { | |
| 622 body | |
| 623 { | |
| 624 | |
| 625 } | |
| 626 } | |
| LEFT | RIGHT |