OLD | NEW |
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;} | |
8 .maxthon .maxthon-only {display: block;} | |
9 | 7 |
10 /****************************************************************************** | 8 /****************************************************************************** |
11 * Browser-based styles | 9 * Browser-based styles |
12 *****************************************************************************/ | 10 *****************************************************************************/ |
13 | 11 |
14 .show-on-msie { display: none; } | 12 .show-on-msie { display: none; } |
15 .msie .show-on-msie { display: block; } | 13 .msie .show-on-msie { display: inherit; } |
16 .msie .hide-on-msie { display: none; } | 14 .msie .hide-on-msie { display: none; } |
17 | 15 |
| 16 .show-on-maxthon { display: none; } |
| 17 .maxthon .show-on-maxthon { display: inherit; } |
| 18 .maxthon .hide-on-maxthon { display: none; } |
| 19 |
18 /****************************************************************************** | 20 /****************************************************************************** |
19 * #hero-download | 21 * #hero-download |
20 *****************************************************************************/ | 22 *****************************************************************************/ |
21 | 23 |
22 #hero-download | 24 #hero-download |
23 { | 25 { |
24 padding: 3em 1em; | 26 padding: 3em 1em; |
25 } | 27 } |
26 | 28 |
27 @media (min-width: 576px) and (max-width: 1023px) | 29 @media (min-width: 576px) and (max-width: 1023px) |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 * #footnote | 339 * #footnote |
338 *****************************************************************************/ | 340 *****************************************************************************/ |
339 | 341 |
340 #footnote | 342 #footnote |
341 { | 343 { |
342 padding-top: 3em; | 344 padding-top: 3em; |
343 padding-bottom: 2em; | 345 padding-bottom: 2em; |
344 font-size: 13px; | 346 font-size: 13px; |
345 color: #7d7d7d; | 347 color: #7d7d7d; |
346 } | 348 } |
OLD | NEW |