| 1 |
.wp2fa-progress-bar { |
| 2 |
display: none; |
| 3 |
width: 100%; |
| 4 |
margin-bottom: 10px; |
| 5 |
background-color: #f3f3f3; |
| 6 |
} |
| 7 |
|
| 8 |
.wp2fa-progress-bar.show { |
| 9 |
display: block; |
| 10 |
} |
| 11 |
|
| 12 |
.wp2fa-progress-bar .progress-bar-inner { |
| 13 |
width: 0; |
| 14 |
height: 5px; |
| 15 |
background-color: #2271b1; |
| 16 |
animation: wp2fa-loader 1s ease infinite; |
| 17 |
} |
| 18 |
|
| 19 |
#login #twofa-code-field { |
| 20 |
margin: 0 0 16px; |
| 21 |
} |
| 22 |
|
| 23 |
#login #twofa-code-field label { |
| 24 |
display: block; |
| 25 |
position: relative; |
| 26 |
} |
| 27 |
|
| 28 |
#login #twofa-code-field .input { |
| 29 |
margin-bottom: 0; |
| 30 |
} |
| 31 |
|
| 32 |
#login #twofa-help-icon { |
| 33 |
color: #2271b1; |
| 34 |
font-size: 20px; |
| 35 |
cursor: pointer; |
| 36 |
} |
| 37 |
|
| 38 |
#login .twofa-help-link { |
| 39 |
text-decoration: none; |
| 40 |
} |
| 41 |
|
| 42 |
#login #twofa-resend { |
| 43 |
display: none; |
| 44 |
margin-top: 8px; |
| 45 |
} |
| 46 |
|
| 47 |
#login #twofa-destination { |
| 48 |
display: block; |
| 49 |
margin-top: 6px; |
| 50 |
color: #50575e; |
| 51 |
font-size: 13px; |
| 52 |
} |
| 53 |
|
| 54 |
#login #twofa-resend-status { |
| 55 |
display: none; |
| 56 |
margin-top: 6px; |
| 57 |
color: #50575e; |
| 58 |
font-size: 13px; |
| 59 |
} |
| 60 |
|
| 61 |
@keyframes wp2fa-loader { |
| 62 |
100% { |
| 63 |
width: 100%; |
| 64 |
} |
| 65 |
} |
| 66 |
|