OLD | NEW |
1 /* #reinstall | 1 /* #reinstall |
2 ******************************************************************************/ | 2 ******************************************************************************/ |
3 | 3 |
4 #reinstall | 4 #reinstall |
5 { | 5 { |
6 padding: 1em 0; | 6 font-size: 1.1em; |
| 7 margin-bottom: 1.5em; |
7 } | 8 } |
8 | 9 |
9 #reinstall .button | 10 #reinstall .button |
10 { | 11 { |
11 margin: 1em 0; | 12 display: block; |
| 13 width: 100%; |
| 14 margin-top: 1em; |
12 } | 15 } |
13 | 16 |
14 @media(min-width: 768px) | 17 @media (min-width: 576px) |
15 { | 18 { |
16 #reinstall .button | 19 #reinstall .button |
17 { | 20 { |
18 margin-left: 1.5em; | 21 display: inline-block; |
| 22 width: auto; |
| 23 margin-left: 1em; |
19 } | 24 } |
20 | 25 |
21 [dir="rtl"] #reinstall .button | 26 [dir="rtl"] #reinstall .button |
22 { | 27 { |
23 margin-right: 1.5em; | 28 margin-left: 0; |
| 29 margin-right: 1em; |
24 } | 30 } |
25 } | 31 } |
26 | 32 |
| 33 @media (min-width: 768px) |
| 34 { |
| 35 #reinstall |
| 36 { |
| 37 font-size: 1.25em; |
| 38 } |
| 39 } |
27 | 40 |
28 /* #uninstall-reasons | 41 /* #uninstall-reasons |
29 ******************************************************************************/ | 42 ******************************************************************************/ |
30 | 43 |
| 44 #uninstall-reasons h1 |
| 45 { |
| 46 margin-bottom: 0; |
| 47 } |
| 48 |
31 #uninstall-reasons ul | 49 #uninstall-reasons ul |
32 { | 50 { |
33 list-style-type: none; | 51 list-style-type: none; |
| 52 margin: 0; |
34 } | 53 } |
35 | 54 |
36 #uninstall-reasons ul, | 55 #uninstall-reasons ul, |
37 #uninstall-reasons li | 56 #uninstall-reasons li |
38 { | 57 { |
39 padding-left: 0; | 58 padding-left: 0; |
40 margin-bottom: 0.5em; | 59 margin-bottom: 0.5em; |
41 } | 60 } |
42 | 61 |
43 [dir="rtl"] #uninstall-reasons ul, | 62 [dir="rtl"] #uninstall-reasons ul, |
(...skipping 27 matching lines...) Expand all Loading... |
71 | 90 |
72 .error #reason-error | 91 .error #reason-error |
73 { | 92 { |
74 display: block; | 93 display: block; |
75 } | 94 } |
76 | 95 |
77 .hidden | 96 .hidden |
78 { | 97 { |
79 display: none; | 98 display: none; |
80 } | 99 } |
OLD | NEW |