File size: 2,025 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
@import "@automattic/color-studio/dist/color-variables";
@import "two-factor-content";
.two-factor-authentication__small-print {
clear: both;
font-size: $font-body-small;
padding-top: 8px;
color: $studio-gray-40;
a {
color: $studio-gray-40;
text-decoration: underline;
}
}
.two-factor-authentication__verification-code-form {
button {
width: 100%;
}
.form-label {
text-transform: uppercase;
font-size: $font-body-extra-small;
margin-bottom: 12px;
}
.verification-code-form__help-text {
margin-top: 16px;
min-height: 50px;
}
}
.woo .two-factor-authentication__verification-code-form-wrapper {
padding: 4px 0 0;
text-align: center;
.security-key-form__help-text {
margin-bottom: 40px;
}
.two-factor-authentication__verification-code-form {
border: 0;
padding: 0 0 10px;
margin-bottom: 40px;
}
@media screen and (max-width: 660px) {
text-align: left;
}
p {
margin: 0;
}
strong {
color: #50575e;
}
button {
text-transform: inherit;
padding: 12px 24px;
}
.form-label {
font-weight: 500;
text-align: left;
margin-bottom: 8px;
}
.form-fieldset {
margin: 40px auto 16px;
max-width: 404px;
}
.form-button {
margin: 0;
max-width: 404px;
}
.form-fieldset,
.form-button {
@media screen and (max-width: 617px) {
margin-left: 0;
margin-right: 0;
width: 100%;
}
}
.auth-form__separator {
max-width: 404px;
margin-left: auto;
margin-right: auto;
}
.two-factor-authentication__actions.card {
padding: 36px 0 40px;
.button {
border: 1px solid #c3c4c7;
color: var(--color-gray-100);
font-weight: 500;
line-height: 20px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
width: 100%;
max-width: 404px;
}
}
.two-factor-authentication__small-print {
a {
color: var(--woo-purple-40);
}
}
}
.security-key-form__add-wait-for-key {
text-align: center;
.spinner {
margin-bottom: 1em;
}
p {
margin-bottom: 0.5em;
}
}
.security-key-form__add-wait-for-key-heading {
font-weight: 600;
}
|