-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c10211
commit f566f7c
Showing
78 changed files
with
2,478 additions
and
810 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
htdocs/wp/wp-content/plugins/check-email/assets/css/admin/checkemail.min.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
160 changes: 160 additions & 0 deletions
160
htdocs/wp/wp-content/plugins/check-email/assets/css/admin/checkmail_wizard.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
.wrap_div { | ||
font-family: Arial, sans-serif; | ||
text-align: center; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
/* height: 100vh; */ | ||
/* background-color: #f9f9f9; */ | ||
} | ||
.container { | ||
background-color: white; | ||
padding: 20px; | ||
margin: 80px; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
} | ||
.logo { | ||
margin-bottom: 20px; | ||
} | ||
.button_check_mail { | ||
display: inline-block; | ||
padding: 10px 20px; | ||
margin-top: 20px; | ||
background-color: #f47a20; | ||
color: white; | ||
text-decoration: none; | ||
border-radius: 4px; | ||
} | ||
|
||
|
||
/* wizard steps */ | ||
|
||
.cm_step_body { | ||
font-family: Arial, sans-serif; | ||
/* background-color: #f9f9f9; */ | ||
margin: 0; | ||
padding: 50px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100%; | ||
} | ||
.cm_step_container { | ||
background-color: white; | ||
padding: 20px; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
width: 80%; | ||
max-width: 600px; | ||
z-index: 5; | ||
} | ||
.cm_logo { | ||
text-align: center; | ||
margin-bottom: 20px; | ||
} | ||
.cm_progress { | ||
display: flex; | ||
justify-content: space-between; | ||
margin: 20px 0; | ||
} | ||
.cm_progress div { | ||
width: 49%; | ||
height: 8px; | ||
background-color: #e0e0e0; | ||
border-radius: 4px; | ||
position: relative; | ||
} | ||
.cm_progress div.active { | ||
background-color: #4CAF50; | ||
} | ||
.cm_step { | ||
font-size: 14px; | ||
color: #666; | ||
} | ||
.cm_h2 { | ||
color: #333; | ||
font-size: 24px; | ||
} | ||
.cm_p { | ||
color: #555; | ||
} | ||
.cm_checklist { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
.cm_checklist li { | ||
padding: 10px 0; | ||
border-bottom: 1px solid #e0e0e0; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
.cm_checklist li:last-child { | ||
border-bottom: none; | ||
} | ||
.cm_checklist li .cm_checkmark { | ||
color: green; | ||
font-weight: bold; | ||
} | ||
.cm_step_buttons { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-top: 20px; | ||
} | ||
.cm_step_button { | ||
display: inline-block!important; | ||
padding: 10px 20px; | ||
background-color: #f47a20!important; | ||
color: white!important; | ||
text-decoration: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
border: none; | ||
} | ||
.cm_step_button.secondary { | ||
background-color: #ccc!important; | ||
color: #333!important; | ||
border: none; | ||
} | ||
.cm_step_footer { | ||
text-align: center; | ||
margin-top: 20px; | ||
} | ||
.cm_step_footer a { | ||
color: #0073aa; | ||
text-decoration: none; | ||
} | ||
.cm_step_hidden { | ||
display: none; | ||
} | ||
|
||
#adminmenuback, #adminmenuwrap, #adminmenu, #wpadminbar, #wpfooter{ | ||
display: none; | ||
} | ||
#wpcontent, #wpfooter { | ||
margin-left: 0; | ||
} | ||
|
||
|
||
.cm_loader { | ||
display: none; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
border: 6px solid #f3f3f3; | ||
border-top: 6px solid #f47a20; | ||
border-radius: 50%; | ||
width: 60px; | ||
height: 60px; | ||
animation: spin 2s linear infinite; | ||
z-index: 99; /* Ensure the loader is above everything */ | ||
|
||
} | ||
@keyframes spin { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
} |
160 changes: 160 additions & 0 deletions
160
htdocs/wp/wp-content/plugins/check-email/assets/css/admin/checkmail_wizard.min.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
.wrap_div { | ||
font-family: Arial, sans-serif; | ||
text-align: center; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
/* height: 100vh; */ | ||
/* background-color: #f9f9f9; */ | ||
} | ||
.container { | ||
background-color: white; | ||
padding: 20px; | ||
margin: 80px; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
} | ||
.logo { | ||
margin-bottom: 20px; | ||
} | ||
.button_check_mail { | ||
display: inline-block; | ||
padding: 10px 20px; | ||
margin-top: 20px; | ||
background-color: #f47a20; | ||
color: white; | ||
text-decoration: none; | ||
border-radius: 4px; | ||
} | ||
|
||
|
||
/* wizard steps */ | ||
|
||
.cm_step_body { | ||
font-family: Arial, sans-serif; | ||
/* background-color: #f9f9f9; */ | ||
margin: 0; | ||
padding: 50px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100%; | ||
} | ||
.cm_step_container { | ||
background-color: white; | ||
padding: 20px; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
width: 80%; | ||
max-width: 600px; | ||
z-index: 5; | ||
} | ||
.cm_logo { | ||
text-align: center; | ||
margin-bottom: 20px; | ||
} | ||
.cm_progress { | ||
display: flex; | ||
justify-content: space-between; | ||
margin: 20px 0; | ||
} | ||
.cm_progress div { | ||
width: 49%; | ||
height: 8px; | ||
background-color: #e0e0e0; | ||
border-radius: 4px; | ||
position: relative; | ||
} | ||
.cm_progress div.active { | ||
background-color: #4CAF50; | ||
} | ||
.cm_step { | ||
font-size: 14px; | ||
color: #666; | ||
} | ||
.cm_h2 { | ||
color: #333; | ||
font-size: 24px; | ||
} | ||
.cm_p { | ||
color: #555; | ||
} | ||
.cm_checklist { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
.cm_checklist li { | ||
padding: 10px 0; | ||
border-bottom: 1px solid #e0e0e0; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
.cm_checklist li:last-child { | ||
border-bottom: none; | ||
} | ||
.cm_checklist li .cm_checkmark { | ||
color: green; | ||
font-weight: bold; | ||
} | ||
.cm_step_buttons { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-top: 20px; | ||
} | ||
.cm_step_button { | ||
display: inline-block!important; | ||
padding: 10px 20px; | ||
background-color: #f47a20!important; | ||
color: white!important; | ||
text-decoration: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
border: none; | ||
} | ||
.cm_step_button.secondary { | ||
background-color: #ccc!important; | ||
color: #333!important; | ||
border: none; | ||
} | ||
.cm_step_footer { | ||
text-align: center; | ||
margin-top: 20px; | ||
} | ||
.cm_step_footer a { | ||
color: #0073aa; | ||
text-decoration: none; | ||
} | ||
.cm_step_hidden { | ||
display: none; | ||
} | ||
|
||
#adminmenuback, #adminmenuwrap, #adminmenu, #wpadminbar, #wpfooter{ | ||
display: none; | ||
} | ||
#wpcontent, #wpfooter { | ||
margin-left: 0; | ||
} | ||
|
||
|
||
.cm_loader { | ||
display: none; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
border: 6px solid #f3f3f3; | ||
border-top: 6px solid #f47a20; | ||
border-radius: 50%; | ||
width: 60px; | ||
height: 60px; | ||
animation: spin 2s linear infinite; | ||
z-index: 99; /* Ensure the loader is above everything */ | ||
|
||
} | ||
@keyframes spin { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
} |
Oops, something went wrong.