checkemail.css
1 week ago
checkemail.min.css
1 week ago
checkmail_wizard.css
2 months ago
checkmail_wizard.min.css
2 months ago
export-logs.css
2 months ago
export-logs.min.css
2 months ago
feedback.css
2 months ago
feedback.min.css
2 months ago
view-logs.css
2 months ago
view-logs.min.css
2 months ago
checkmail_wizard.min.css
160 lines
| 1 | .wrap_div { |
| 2 | font-family: Arial, sans-serif; |
| 3 | text-align: center; |
| 4 | margin: 0; |
| 5 | padding: 0; |
| 6 | display: flex; |
| 7 | justify-content: center; |
| 8 | align-items: center; |
| 9 | /* height: 100vh; */ |
| 10 | /* background-color: #f9f9f9; */ |
| 11 | } |
| 12 | .container { |
| 13 | background-color: white; |
| 14 | padding: 20px; |
| 15 | margin: 80px; |
| 16 | border-radius: 8px; |
| 17 | box-shadow: 0 0 10px rgba(0,0,0,0.1); |
| 18 | } |
| 19 | .logo { |
| 20 | margin-bottom: 20px; |
| 21 | } |
| 22 | .button_check_mail { |
| 23 | display: inline-block; |
| 24 | padding: 10px 20px; |
| 25 | margin-top: 20px; |
| 26 | background-color: #f47a20; |
| 27 | color: white; |
| 28 | text-decoration: none; |
| 29 | border-radius: 4px; |
| 30 | } |
| 31 | |
| 32 | |
| 33 | /* wizard steps */ |
| 34 | |
| 35 | .cm_step_body { |
| 36 | font-family: Arial, sans-serif; |
| 37 | /* background-color: #f9f9f9; */ |
| 38 | margin: 0; |
| 39 | padding: 50px; |
| 40 | display: flex; |
| 41 | justify-content: center; |
| 42 | align-items: center; |
| 43 | height: 100%; |
| 44 | } |
| 45 | .cm_step_container { |
| 46 | background-color: white; |
| 47 | padding: 20px; |
| 48 | border-radius: 8px; |
| 49 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
| 50 | width: 80%; |
| 51 | max-width: 600px; |
| 52 | z-index: 5; |
| 53 | } |
| 54 | .cm_logo { |
| 55 | text-align: center; |
| 56 | margin-bottom: 20px; |
| 57 | } |
| 58 | .cm_progress { |
| 59 | display: flex; |
| 60 | justify-content: space-between; |
| 61 | margin: 20px 0; |
| 62 | } |
| 63 | .cm_progress div { |
| 64 | width: 49%; |
| 65 | height: 8px; |
| 66 | background-color: #e0e0e0; |
| 67 | border-radius: 4px; |
| 68 | position: relative; |
| 69 | } |
| 70 | .cm_progress div.active { |
| 71 | background-color: #4CAF50; |
| 72 | } |
| 73 | .cm_step { |
| 74 | font-size: 14px; |
| 75 | color: #666; |
| 76 | } |
| 77 | .cm_h2 { |
| 78 | color: #333; |
| 79 | font-size: 24px; |
| 80 | } |
| 81 | .cm_p { |
| 82 | color: #555; |
| 83 | } |
| 84 | .cm_checklist { |
| 85 | list-style: none; |
| 86 | padding: 0; |
| 87 | } |
| 88 | .cm_checklist li { |
| 89 | padding: 10px 0; |
| 90 | border-bottom: 1px solid #e0e0e0; |
| 91 | display: flex; |
| 92 | justify-content: space-between; |
| 93 | align-items: center; |
| 94 | } |
| 95 | .cm_checklist li:last-child { |
| 96 | border-bottom: none; |
| 97 | } |
| 98 | .cm_checklist li .cm_checkmark { |
| 99 | color: green; |
| 100 | font-weight: bold; |
| 101 | } |
| 102 | .cm_step_buttons { |
| 103 | display: flex; |
| 104 | justify-content: space-between; |
| 105 | margin-top: 20px; |
| 106 | } |
| 107 | .cm_step_button { |
| 108 | display: inline-block!important; |
| 109 | padding: 10px 20px; |
| 110 | background-color: #f47a20!important; |
| 111 | color: white!important; |
| 112 | text-decoration: none; |
| 113 | border-radius: 4px; |
| 114 | cursor: pointer; |
| 115 | border: none; |
| 116 | } |
| 117 | .cm_step_button.secondary { |
| 118 | background-color: #ccc!important; |
| 119 | color: #333!important; |
| 120 | border: none; |
| 121 | } |
| 122 | .cm_step_footer { |
| 123 | text-align: center; |
| 124 | margin-top: 20px; |
| 125 | } |
| 126 | .cm_step_footer a { |
| 127 | color: #0073aa; |
| 128 | text-decoration: none; |
| 129 | } |
| 130 | .cm_step_hidden { |
| 131 | display: none; |
| 132 | } |
| 133 | |
| 134 | #adminmenuback, #adminmenuwrap, #adminmenu, #wpadminbar, #wpfooter{ |
| 135 | display: none; |
| 136 | } |
| 137 | #wpcontent, #wpfooter { |
| 138 | margin-left: 0; |
| 139 | } |
| 140 | |
| 141 | |
| 142 | .cm_loader { |
| 143 | display: none; |
| 144 | position: absolute; |
| 145 | top: 50%; |
| 146 | left: 50%; |
| 147 | transform: translate(-50%, -50%); |
| 148 | border: 6px solid #f3f3f3; |
| 149 | border-top: 6px solid #f47a20; |
| 150 | border-radius: 50%; |
| 151 | width: 60px; |
| 152 | height: 60px; |
| 153 | animation: spin 2s linear infinite; |
| 154 | z-index: 99; /* Ensure the loader is above everything */ |
| 155 | |
| 156 | } |
| 157 | @keyframes spin { |
| 158 | 0% { transform: rotate(0deg); } |
| 159 | 100% { transform: rotate(360deg); } |
| 160 | } |