jetpack
/
jetpack_vendor
/
automattic
/
jetpack-account-protection
/
src
/
css
/
password-detection.css
password-detection.css
110 lines
| 1 | .password-detection-wrapper { |
| 2 | background-color: #f0f0f1; |
| 3 | min-width: 0; |
| 4 | margin: 30px; |
| 5 | color: #3c434a; |
| 6 | font-family: -apple-system, system-ui, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 7 | font-size: 13px; |
| 8 | line-height: 1.4; |
| 9 | } |
| 10 | |
| 11 | .password-detection-content { |
| 12 | background: #fff; |
| 13 | max-width: 420px; |
| 14 | margin: auto; |
| 15 | padding: 26px 24px; |
| 16 | font-weight: 400; |
| 17 | overflow: hidden; |
| 18 | border: 1px solid #c3c4c7; |
| 19 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); |
| 20 | |
| 21 | #jetpack-logo__icon { |
| 22 | height: 30px; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | .password-detection-title { |
| 27 | font-size: 24px; |
| 28 | font-weight: 500; |
| 29 | } |
| 30 | |
| 31 | .actions { |
| 32 | display: flex; |
| 33 | flex-direction: column; |
| 34 | gap: 8px; |
| 35 | } |
| 36 | |
| 37 | .action { |
| 38 | display: flex; |
| 39 | justify-content: center; |
| 40 | align-items: center; |
| 41 | height: 36px; |
| 42 | cursor: pointer; |
| 43 | width: 100%; |
| 44 | border-radius: 2px; |
| 45 | font-size: 13px; |
| 46 | text-decoration: none; |
| 47 | } |
| 48 | |
| 49 | .action-input { |
| 50 | height: 36px; |
| 51 | cursor: pointer; |
| 52 | width: 100%; |
| 53 | box-sizing: border-box; |
| 54 | text-indent: 8px; |
| 55 | |
| 56 | &::placeholder { |
| 57 | font-size: 13px; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | .action-verify, |
| 62 | .action-update-password { |
| 63 | margin-top: 10px; |
| 64 | background-color: #00e; |
| 65 | border: 2px solid #00e; |
| 66 | color: #fff; |
| 67 | } |
| 68 | |
| 69 | .action-proceed { |
| 70 | background-color: #fff; |
| 71 | border: 2px solid #00e; |
| 72 | color: #00e; |
| 73 | } |
| 74 | |
| 75 | a.risks-link, |
| 76 | a.resend-email-link { |
| 77 | color: #00e; |
| 78 | } |
| 79 | |
| 80 | .email-status { |
| 81 | text-align: center; |
| 82 | } |
| 83 | |
| 84 | .notice { |
| 85 | width: 100%; |
| 86 | display: flex; |
| 87 | align-items: center; |
| 88 | font-weight: 500; |
| 89 | box-sizing: border-box; |
| 90 | justify-content: center; |
| 91 | } |
| 92 | |
| 93 | .notice-message { |
| 94 | text-align: center; |
| 95 | margin: 7px 0; |
| 96 | } |
| 97 | |
| 98 | .error { |
| 99 | background: #facfd2; |
| 100 | border: 2px solid #e65054; |
| 101 | color: #e65054; |
| 102 | } |
| 103 | |
| 104 | .success { |
| 105 | background: #d0e6b8; |
| 106 | border: 2px solid #069e08; |
| 107 | color: #069e08; |
| 108 | } |
| 109 | |
| 110 |