PluginProbe
The WP Remote WordPress Plugin / 6.76
The WP Remote WordPress Plugin v6.76
6.76 6.72 6.69 6.65 6.62 6.48 6.47 4.87 4.97 5.05 5.09 5.16 5.22 5.24 5.25 5.38 5.41 5.42 5.45 5.47 5.53 5.56 5.65 5.68 5.72 All 54 releases
wpremote / wp_2fa / css / login.css

login.css in The WP Remote WordPress Plugin 6.76, at wp_2fa/css/login.css

66 lines 924 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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