| LEFT | RIGHT |
| 1 /* #reinstall | 1 /* #reinstall |
| 2 ******************************************************************************/ | 2 ******************************************************************************/ |
| 3 | 3 |
| 4 #reinstall | 4 #reinstall |
| 5 { | 5 { |
| 6 margin-top: 1em; | 6 padding: 1em 0; |
| 7 padding: 0.5em 0; | |
| 8 } | 7 } |
| 9 | 8 |
| 10 #reinstall .button | 9 #reinstall .button |
| 11 { | 10 { |
| 12 margin: 0 1em; | 11 margin: 1em 0; |
| 13 padding: 0.6em 1.5em; | |
| 14 color: #fff; | |
| 15 background-color: #c70d2c; | |
| 16 border-bottom: 4px solid #950000; | |
| 17 } | 12 } |
| 18 | 13 |
| 19 #reinstall .button:hover, | 14 @media(min-width: 768px) |
| 20 #reinstall .button:active, | |
| 21 #reinstall .button:focus | |
| 22 { | |
| 23 background-color: #E12746; | |
| 24 text-decoration: none; | |
| 25 } | |
| 26 | |
| 27 @media(max-width: 767px) | |
| 28 { | 15 { |
| 29 #reinstall .button | 16 #reinstall .button |
| 30 { | 17 { |
| 31 display: block; | 18 margin-left: 1.5em; |
| 32 margin: 1em 0; | 19 } |
| 20 |
| 21 [dir="rtl"] #reinstall .button |
| 22 { |
| 23 margin-right: 1.5em; |
| 33 } | 24 } |
| 34 } | 25 } |
| 26 |
| 35 | 27 |
| 36 /* #uninstall-reasons | 28 /* #uninstall-reasons |
| 37 ******************************************************************************/ | 29 ******************************************************************************/ |
| 38 | 30 |
| 31 #uninstall-reasons ul |
| 32 { |
| 33 list-style-type: none; |
| 34 } |
| 35 |
| 39 #uninstall-reasons ul, | 36 #uninstall-reasons ul, |
| 40 #uninstall-reasons li | 37 #uninstall-reasons li |
| 41 { | 38 { |
| 42 list-style-type: none; | 39 padding-left: 0; |
| 43 margin: 0; | 40 margin-bottom: 0.5em; |
| 44 padding: 0; | |
| 45 } | 41 } |
| 46 | 42 |
| 47 #uninstall-reasons li | 43 [dir="rtl"] #uninstall-reasons ul, |
| 44 [dir="rtl"] #uninstall-reasons li |
| 48 { | 45 { |
| 49 margin-bottom: 0.5em; | 46 padding-right: 0; |
| 47 } |
| 48 |
| 49 #uninstall-reasons input[type="checkbox"] |
| 50 { |
| 51 margin-right: 0.5em; |
| 52 } |
| 53 |
| 54 [dir="rtl"] #uninstall-reasons input[type="checkbox"] |
| 55 { |
| 56 margin-left: 0.5em; |
| 50 } | 57 } |
| 51 | 58 |
| 52 #uninstall-reasons textarea | 59 #uninstall-reasons textarea |
| 53 { | 60 { |
| 54 margin-top: 0.5em; | 61 margin-top: 0.5em; |
| 55 } | 62 width: 100%; |
| 56 | 63 max-width: 554px; |
| 57 #reason-submit | |
| 58 { | |
| 59 padding: 0.6em 1.5em; | |
| 60 color: #fff; | |
| 61 background-color: #5982B0; | |
| 62 border: 0; | |
| 63 border-bottom: 4px solid #264F7D; | |
| 64 } | |
| 65 | |
| 66 #reason-submit:hover, | |
| 67 #reason-submit:active, | |
| 68 #reason-submit:focus | |
| 69 { | |
| 70 background-color: #739CCA; | |
| 71 text-decoration: none; | |
| 72 } | |
| 73 | |
| 74 @media(max-width: 768px) | |
| 75 { | |
| 76 #reason-submit | |
| 77 { | |
| 78 display: block; | |
| 79 width: 100%; | |
| 80 } | |
| 81 } | 64 } |
| 82 | 65 |
| 83 #reason-error | 66 #reason-error |
| 84 { | 67 { |
| 85 display: none; | 68 display: none; |
| 86 color: #c70d2c; | 69 color: #c70d2c; |
| 87 } | 70 } |
| 88 | 71 |
| 89 .error #reason-error | 72 .error #reason-error |
| 90 { | 73 { |
| 91 display: block; | 74 display: block; |
| 92 } | 75 } |
| 93 | 76 |
| 94 .hidden | 77 .hidden |
| 95 { | 78 { |
| 96 display: none; | 79 display: none; |
| 97 } | 80 } |
| LEFT | RIGHT |