PluginProbe ʕ •ᴥ•ʔ
Flex Import / 2.2
Flex Import v2.2
2.9 trunk 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8
flex-import / assets / css / fleximp-license-style.css
flex-import / assets / css Last commit date
admin-style.css 11 months ago dashboard-banner.css 11 months ago fleximp-license-style.css 11 months ago
fleximp-license-style.css
99 lines
1 /* Container for the license key input form */
2 .license-key-wrap {
3 max-width: 600px;
4 margin: 0 auto;
5 margin-top: 0px;
6 padding: 20px;
7 background-color: #f9f9f9;
8 border-radius: 8px;
9 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
10 margin-top: 80px;
11 }
12
13 /* Style for the form inside the container */
14 #fleximp-license-key-form {
15 display: flex;
16 flex-direction: column;
17 }
18
19 /* Wrap the label and input */
20 .license-key-input-wrap {
21 margin-bottom: 20px;
22 }
23
24 /* Style for the input label */
25 .license-key-input-wrap label {
26 font-size: 16px;
27 font-weight: bold;
28 margin-bottom: 8px;
29 color: #333;
30 }
31
32 /* Style for the input field */
33 .license-key-input input {
34 width: 100%;
35 padding: 12px;
36 font-size: 16px;
37 border: 1px solid #ccc;
38 border-radius: 4px;
39 margin-top: 5px;
40 box-sizing: border-box;
41 }
42
43 /* Button styles */
44 .button {
45 padding: 12px 20px;
46 font-size: 16px;
47 font-weight: bold;
48 border: none;
49 border-radius: 4px;
50 cursor: pointer;
51 margin: 5px 0;
52 transition: background-color 0.3s ease;
53 }
54
55 .button:hover {
56 background-color: #0073e6;
57 color: #fff;
58 }
59
60 /* Deactivate button style */
61 .deactivate-domain {
62 background-color: #f44336;
63 color: white;
64 }
65
66 .deactivate-domain:hover {
67 background-color: #d32f2f;
68 }
69
70 /* Next button style */
71 .next-step-activation {
72 background-color: #4caf50;
73 color: white;
74 }
75
76 .next-step-activation:hover {
77 background-color: #388e3c;
78 }
79
80 /* Responsive adjustments for smaller screens */
81 @media (max-width: 600px) {
82 .license-key-wrap {
83 padding: 15px;
84 }
85
86 .button {
87 width: 100%;
88 margin: 10px 0;
89 }
90 }
91
92
93 .wp-core-ui .button, .wp-core-ui .button-secondary {
94 color: #2271b1;
95 border-color: #2271b1;
96 background: #f6f7f7;
97 vertical-align: top;
98 margin-top: 10px;
99 }