 Issue 29721780:
  Fixes #33 - Adjustments to features section of index page  (Closed) 
  Base URL: https://hg.adblockplus.org/web.adblockplus.org
    
  
    Issue 29721780:
  Fixes #33 - Adjustments to features section of index page  (Closed) 
  Base URL: https://hg.adblockplus.org/web.adblockplus.org| Left: | ||
| Right: | 
| LEFT | RIGHT | 
|---|---|
| 1 /****************************************************************************** | 1 /****************************************************************************** | 
| 2 * Temparary styles | 2 * Temparary styles | 
| 3 *****************************************************************************/ | 3 *****************************************************************************/ | 
| 4 | 4 | 
| 5 .avoid-wrap {display: inline-block;} | 5 .avoid-wrap {display: inline-block;} | 
| 6 .small {font-size: smaller;} | 6 .small {font-size: smaller;} | 
| 7 .maxthon-only {display: none;} | 7 .maxthon-only {display: none;} | 
| 8 .maxthon .maxthon-only {display: block;} | 8 .maxthon .maxthon-only {display: block;} | 
| 9 | 9 | 
| 10 #content, | 10 #content, | 
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 199 } | 199 } | 
| 200 | 200 | 
| 201 /****************************************************************************** | 201 /****************************************************************************** | 
| 202 * #features | 202 * #features | 
| 203 *****************************************************************************/ | 203 *****************************************************************************/ | 
| 204 | 204 | 
| 205 #features | 205 #features | 
| 206 { | 206 { | 
| 207 text-align: center; | 207 text-align: center; | 
| 208 padding-top: 3em; | 208 padding-top: 3em; | 
| 209 padding-bottom: 3em; | 209 padding-bottom: 3em; | 
| 
ire
2018/03/14 13:07:42
TOL: It seems like we should have another `.sectio
 
juliandoucette
2018/03/14 13:54:42
Agreed.
 | |
| 210 } | 210 } | 
| 211 | 211 | 
| 212 #features h2 | 212 #features h2 | 
| 213 { | 213 { | 
| 214 text-transform: uppercase; | 214 text-transform: uppercase; | 
| 215 } | 215 } | 
| 216 | 216 | 
| 217 @media (max-width: 575px) | 217 @media (max-width: 575px) | 
| 218 { | 218 { | 
| 219 #features .column | 219 #features .column | 
| 220 { | 220 { | 
| 221 margin-bottom: 3em; | 221 margin-bottom: 3em; | 
| 222 } | 222 } | 
| 223 | 223 | 
| 224 #features .column:last-of-type | 224 #features .column:last-of-type | 
| 225 { | 225 { | 
| 226 margin-bottom: 0; | 226 margin-bottom: 0; | 
| 227 } | 227 } | 
| 228 } | 228 } | 
| 229 | 229 | 
| 230 @media (min-width: 576px) and (max-width: 1023px) | 230 @media (min-width: 576px) and (max-width: 1023px) | 
| 231 { | 231 { | 
| 232 #features | 232 #features | 
| 233 { | 233 { | 
| 234 text-align: left; | 234 text-align: left; | 
| 
ire
2018/03/14 13:07:42
This should be text-align: right on RTL
 
juliandoucette
2018/03/14 13:54:42
Good catch!
I tested this today and didn't even n
 
ire
2018/03/14 14:04:35
Haha I didn't notice either the first time :P
 | |
| 235 } | 235 } | 
| 236 | 236 | 
| 237 [dir="rtl"] #features | |
| 238 { | |
| 239 text-align: right; | |
| 240 } | |
| 241 | |
| 237 #features .column | 242 #features .column | 
| 238 { | 243 { | 
| 239 position: relative; | 244 position: relative; | 
| 240 width: auto; | 245 width: auto; | 
| 241 padding: 0 3em 2em 10.5em; | 246 padding: 0 3em 2em 10.5em; | 
| 242 } | 247 } | 
| 243 | 248 | 
| 244 [dir="rtl"] #features .column | 249 [dir="rtl"] #features .column | 
| 245 { | 250 { | 
| 246 padding: 0 10.5em 2em 3em; | 251 padding: 0 10.5em 2em 3em; | 
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 304 * #footnote | 309 * #footnote | 
| 305 *****************************************************************************/ | 310 *****************************************************************************/ | 
| 306 | 311 | 
| 307 #footnote | 312 #footnote | 
| 308 { | 313 { | 
| 309 padding-top: 3em; | 314 padding-top: 3em; | 
| 310 padding-bottom: 2em; | 315 padding-bottom: 2em; | 
| 311 font-size: 13px; | 316 font-size: 13px; | 
| 312 color: #7d7d7d; | 317 color: #7d7d7d; | 
| 313 } | 318 } | 
| LEFT | RIGHT |