@ -0,0 +1,5 @@ |
||||
build |
||||
registerServiceWorker.js |
||||
reportWebVitals.js |
||||
src/utils/timeline.js |
||||
src |
@ -0,0 +1,31 @@ |
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. |
||||
|
||||
# dependencies |
||||
/node_modules |
||||
/.pnp |
||||
.pnp.js |
||||
|
||||
# testing |
||||
/coverage |
||||
|
||||
# production |
||||
/build |
||||
|
||||
# misc |
||||
.DS_Store |
||||
.env.local |
||||
.env.development.local |
||||
.env.test.local |
||||
.env.production.local |
||||
|
||||
npm-debug.log* |
||||
yarn-debug.log* |
||||
yarn-error.log* |
||||
|
||||
.eslintcache |
||||
|
||||
/src/_constants/configs.js |
||||
/src/_constants/config.js |
||||
/package-lock.json |
||||
/docker-compose.yml |
||||
/yarn.lock |
@ -0,0 +1,14 @@ |
||||
FROM node:14 |
||||
|
||||
# Set working directory |
||||
WORKDIR /var/www |
||||
|
||||
# get latest nodejs |
||||
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - |
||||
RUN apt-get install -y nodejs |
||||
|
||||
# Install Yarn |
||||
#RUN npm install --global yarn |
||||
|
||||
#npm install |
||||
#RUN bash -c "cd /var/www/src; npm install" |
@ -0,0 +1,82 @@ |
||||
# Build code |
||||
## required |
||||
`nodejs version 16.x` |
||||
|
||||
## Build |
||||
|
||||
- Step 0: run `npm install -g npm@latest` |
||||
- Step 1: run `npm install` |
||||
- Step 2: create config.js file `cp src/_constants/configs.example.js src/_constants/configs.js` |
||||
- Step 3: run `npm run build` to build code |
||||
- Step 4: copy `build` directory to server |
||||
|
||||
# Getting Started with Create React App |
||||
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). |
||||
|
||||
## Available Scripts |
||||
|
||||
In the project directory, you can run: |
||||
|
||||
### `yarn start` |
||||
|
||||
Runs the app in the development mode.\ |
||||
Open [http://localhost:1480](http://localhost:1480) to view it in the browser. |
||||
|
||||
The page will reload if you make edits.\ |
||||
You will also see any lint errors in the console. |
||||
|
||||
### `yarn test` |
||||
|
||||
Launches the test runner in the interactive watch mode.\ |
||||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. |
||||
|
||||
### `yarn build` |
||||
|
||||
Builds the app for production to the `build` folder.\ |
||||
It correctly bundles React in production mode and optimizes the build for the best performance. |
||||
|
||||
The build is minified and the filenames include the hashes.\ |
||||
Your app is ready to be deployed! |
||||
|
||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. |
||||
|
||||
### `yarn eject` |
||||
|
||||
**Note: this is a one-way operation. Once you `eject`, you can’t go back!** |
||||
|
||||
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. |
||||
|
||||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. |
||||
|
||||
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. |
||||
|
||||
## Learn More |
||||
|
||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). |
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/). |
||||
|
||||
### Code Splitting |
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) |
||||
|
||||
### Analyzing the Bundle Size |
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) |
||||
|
||||
### Making a Progressive Web App |
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) |
||||
|
||||
### Advanced Configuration |
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) |
||||
|
||||
### Deployment |
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) |
||||
|
||||
### `yarn build` fails to minify |
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) |
@ -0,0 +1,15 @@ |
||||
server { |
||||
listen 80; |
||||
server_name se_dev.sundayenglish.com; |
||||
index index.html; |
||||
error_log /var/log/nginx/error.log; |
||||
access_log /var/log/nginx/access.log; |
||||
root /var/www/build; |
||||
|
||||
location / { |
||||
try_files $uri $uri/ /index.html$is_args$args; |
||||
gzip_static on; |
||||
} |
||||
|
||||
client_max_body_size 128m; |
||||
} |
@ -0,0 +1,75 @@ |
||||
{ |
||||
"name": "sunday-english", |
||||
"version": "0.1.0", |
||||
"private": true, |
||||
"dependencies": { |
||||
"@material-ui/core": "3.9.2", |
||||
"@material-ui/icons": "3.0.2", |
||||
"@testing-library/jest-dom": "^5.11.4", |
||||
"@testing-library/react": "^11.1.0", |
||||
"@testing-library/user-event": "^12.1.10", |
||||
"axios": "^0.21.1", |
||||
"chart.js": "^2.9.4", |
||||
"chartjs-plugin-datalabels": "1.0.0", |
||||
"classnames": "^2.3.1", |
||||
"date-fns": "^2.22.1", |
||||
"dayjs": "^1.10.4", |
||||
"history": "^4.10.1", |
||||
"html-react-parser": "^1.2.4", |
||||
"jquery": "^3.6.0", |
||||
"lodash": "^4.17.21", |
||||
"lodash-es": "^4.17.21", |
||||
"moment-duration-format": "2.2.2", |
||||
"node-sass": "9.0.0", |
||||
"qs": "^6.9.6", |
||||
"query-string": "^7.1.1", |
||||
"react": "^17.0.1", |
||||
"react-apple-login": "^1.1.3", |
||||
"react-chartjs-2": "^2.11.1", |
||||
"react-datepicker": "^4.1.1", |
||||
"react-dom": "^17.0.1", |
||||
"react-facebook-login": "^4.1.1", |
||||
"react-google-login": "^5.2.2", |
||||
"react-js-pagination": "^3.0.3", |
||||
"react-lazyload": "^3.2.0", |
||||
"react-markdown": "^8.0.5", |
||||
"react-redux": "^7.2.2", |
||||
"react-router-dom": "^5.2.0", |
||||
"react-router-hash-link": "^2.4.3", |
||||
"react-scripts": "4.0.3", |
||||
"react-slick": "^0.28.1", |
||||
"react-social-login": "^3.4.12", |
||||
"react-uikit3": "^0.14.0", |
||||
"redux": "^4.0.5", |
||||
"redux-persist": "^6.0.0", |
||||
"redux-thunk": "^2.3.0", |
||||
"sass": "^1.32.8", |
||||
"styled-components": "^5.3.3", |
||||
"text-selection-react": "^1.1.8", |
||||
"web-vitals": "^1.0.1" |
||||
}, |
||||
"scripts": { |
||||
"start": "react-scripts --max_old_space_size=4096 start", |
||||
"build": "react-scripts --max_old_space_size=4096 build", |
||||
"test": "react-scripts test", |
||||
"eject": "react-scripts eject", |
||||
"lint": "eslint src" |
||||
}, |
||||
"browserslist": { |
||||
"production": [ |
||||
">0.2%", |
||||
"not dead", |
||||
"not op_mini all" |
||||
], |
||||
"development": [ |
||||
"last 1 chrome version", |
||||
"last 1 firefox version", |
||||
"last 1 safari version" |
||||
] |
||||
}, |
||||
"devDependencies": { |
||||
"css-loader": "^5.1.1", |
||||
"prettier": "^2.2.1", |
||||
"style-loader": "^2.0.0" |
||||
} |
||||
} |
@ -0,0 +1,6 @@ |
||||
RewriteEngine On |
||||
RewriteBase / |
||||
RewriteCond %{REQUEST_FILENAME} !-f |
||||
RewriteCond %{REQUEST_FILENAME} !-d |
||||
RewriteCond %{REQUEST_FILENAME} !-l |
||||
RewriteRule ^.*$ / [L,QSA] |
@ -0,0 +1,49 @@ |
||||
.btn-line-blue{ |
||||
padding: 0 25px; |
||||
height: 40px; |
||||
border-radius: 20px; |
||||
border: none; |
||||
background-image: linear-gradient(to right, #00b9b7 , #00e1a0); |
||||
font-size: 16px; |
||||
line-height: 40px; |
||||
color: #fff; |
||||
/* transition: 0.8s; */ |
||||
font-family: 'Myriadpro-SemiBold'; |
||||
/* min-width: 100px; */ |
||||
} |
||||
|
||||
.btn-line-blue.border-transparent{ |
||||
border: 2px solid transparent; |
||||
} |
||||
.btn-line-blue:hover{ |
||||
/* background-image: linear-gradient(to top, #00b9b7 , #00e1a0); */ |
||||
transition: 0s; |
||||
background: #00C0B4; |
||||
color: #ffffff; |
||||
} |
||||
.btn-custom-hei{ |
||||
height: 36px; |
||||
line-height: 36px; |
||||
border-radius: 18px; |
||||
} |
||||
.btn-line-blue.btn-p35{ |
||||
padding: 0 35px; |
||||
} |
||||
@media screen and (max-height: 700px) { |
||||
.btn-line-blue { |
||||
padding: 0 15px; |
||||
height: 32px; |
||||
line-height: 32px; |
||||
border-radius: 16px; |
||||
border: none; |
||||
font-size: 14px; |
||||
background-image: linear-gradient(to right, #00e1a0 , #00b9b7); |
||||
color: #fff; |
||||
/* transition: 0.8s; */ |
||||
font-family: 'Myriadpro-SemiBold'; |
||||
/* min-width: 80px; */ |
||||
} |
||||
.btn-line-blue.btn-p35{ |
||||
padding: 0 25px; |
||||
} |
||||
} |
@ -0,0 +1,114 @@ |
||||
.header-change-password { |
||||
height: 20vh; |
||||
background-image: linear-gradient(to right, #03c6b8, #009393); |
||||
display: flex; |
||||
align-items: center; |
||||
min-height: 175px; |
||||
} |
||||
|
||||
.header-change-password .logo { |
||||
width: 220px; |
||||
margin-left: 50px; |
||||
} |
||||
|
||||
.header-change-password .logo img { |
||||
width: 100%; |
||||
object-fit: cover; |
||||
} |
||||
|
||||
.change-password-container { |
||||
background: #e6e7e9; |
||||
display: flex; |
||||
flex-wrap: wrap; |
||||
justify-content: center; |
||||
padding: 50px 20px; |
||||
height: 80vh; |
||||
min-height: 500px; |
||||
} |
||||
|
||||
.form-change-password { |
||||
box-shadow: 0 1px 15px 0 rgba(21, 27, 38, .15); |
||||
background: #ffffff; |
||||
border: 0; |
||||
border-radius: 20px; |
||||
text-align: center; |
||||
width: 100%; |
||||
max-width: 750px; |
||||
max-height: 400px; |
||||
} |
||||
|
||||
.form-change-password h2.title { |
||||
font-size: 18px; |
||||
color: #000000; |
||||
margin-top: 20px; |
||||
font-weight: 700; |
||||
} |
||||
|
||||
.form-change-password form { |
||||
margin: 20px; |
||||
display: flex; |
||||
flex-wrap: wrap; |
||||
flex-direction: row; |
||||
justify-content: center; |
||||
} |
||||
|
||||
.form-change-password-input { |
||||
margin: 0 10px 15px 10px; |
||||
width: 100%; |
||||
max-width: 350px; |
||||
} |
||||
|
||||
.form-change-password-input input { |
||||
height: 60px; |
||||
width: 100%; |
||||
line-height: 60px; |
||||
font-size: 18px; |
||||
box-sizing: border-box; |
||||
padding-left: 30px; |
||||
border-radius: 20px; |
||||
background: #e6e7e9; |
||||
border: 0; |
||||
outline: none; |
||||
} |
||||
|
||||
.form-change-password-input.err input { |
||||
border: solid 1px #e22028; |
||||
} |
||||
|
||||
.form-change-password-input button { |
||||
height: 60px; |
||||
width: 100%; |
||||
line-height: 60px; |
||||
font-size: 18px; |
||||
color: #ffffff; |
||||
font-weight: 700; |
||||
text-align: center; |
||||
border: 0; |
||||
border-radius: 20px; |
||||
outline: none; |
||||
background: #00b8b6; |
||||
} |
||||
|
||||
.form-change-password-input .ico_input_right { |
||||
position: absolute; |
||||
top: 18px; |
||||
right: 20px; |
||||
} |
||||
|
||||
.form-change-password-input .error-help { |
||||
margin-top: 10px; |
||||
} |
||||
|
||||
.form-change-password-input.err .error-help img { |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
} |
||||
|
||||
.form-change-password-input.err .error-help p { |
||||
font-size: 18px; |
||||
color: #e22028; |
||||
line-height: 31px; |
||||
margin: 0; |
||||
padding: 0 0 0 40px; |
||||
} |
@ -0,0 +1,194 @@ |
||||
.form-sunE-input { |
||||
margin: 20px 0 0; |
||||
} |
||||
|
||||
.form-sunE-input input { |
||||
height: 44px; |
||||
width: 100%; |
||||
line-height: 44px; |
||||
font-size: 16px; |
||||
box-sizing: border-box; |
||||
padding-left: 60px; |
||||
border-radius: 22px; |
||||
outline: none; |
||||
border: 2px solid #fff; |
||||
box-shadow: 0 1px 8px 0 rgba(21, 27, 38, 0.15); |
||||
} |
||||
.form-sunE-input .ico_input { |
||||
position: absolute; |
||||
top: 7px; |
||||
left: 15px; |
||||
z-index: 1; |
||||
} |
||||
.width-22 { |
||||
width: 22px; |
||||
} |
||||
|
||||
.form-sunE-input .ico_phone { |
||||
left: 18px; |
||||
} |
||||
.form-sunE-input .ico_top_3 { |
||||
top: 3px; |
||||
} |
||||
|
||||
.form-sunE-input.ico_left_custom input { |
||||
padding-left: 60px; |
||||
} |
||||
|
||||
.checkbox-gr input { |
||||
margin: -3px 5px 0 0; |
||||
width: 16px; |
||||
height: 16px; |
||||
border: 1px solid #00b9b7; |
||||
font-size: 16px; |
||||
} |
||||
|
||||
.err input { |
||||
border-color: #e22028; |
||||
} |
||||
|
||||
.select-hidden { |
||||
display: none; |
||||
visibility: hidden; |
||||
padding-right: 10px; |
||||
} |
||||
|
||||
.select { |
||||
cursor: pointer; |
||||
display: inline-block; |
||||
position: relative; |
||||
font-size: 16px; |
||||
color: #fff; |
||||
width: 100%; |
||||
height: 48px; |
||||
line-height: 48px; |
||||
border-radius: 24px; |
||||
border: none; |
||||
background-image: linear-gradient(to right, #00e1a0, #00b9b7); |
||||
} |
||||
|
||||
.select-styled { |
||||
position: absolute; |
||||
top: 0; |
||||
right: 0; |
||||
bottom: 0; |
||||
left: 0; |
||||
background-image: linear-gradient(to right, #00e1a0, #00b9b7); |
||||
width: 100%; |
||||
height: 48px; |
||||
line-height: 48px; |
||||
border: none; |
||||
/* transition: all 0.2s ease-in; */ |
||||
border-radius: 24px; |
||||
color: #fff; |
||||
font-size: 16px; |
||||
text-align: center; |
||||
font-family: "Myriadpro-Bold"; |
||||
z-index: 10; |
||||
display: flex; |
||||
} |
||||
|
||||
.select-styled:after { |
||||
content: ""; |
||||
width: 32px; |
||||
height: 32px; |
||||
background: url("./../images/icon/ico_dropdown_border_white.png") 98% / 32px |
||||
no-repeat transparent; |
||||
position: absolute; |
||||
top: 8px; |
||||
right: 10px; |
||||
} |
||||
.select-styled.active:after { |
||||
border-color: transparent transparent #fff transparent; |
||||
} |
||||
.select-options { |
||||
display: none; |
||||
position: absolute; |
||||
padding: 24px 40px 0; |
||||
top: 24px; |
||||
right: 0; |
||||
left: 0; |
||||
z-index: 9; |
||||
margin: 0; |
||||
list-style: none; |
||||
background-color: #fff; |
||||
border-radius: 24px; |
||||
border-top-right-radius: 0; |
||||
border-top-left-radius: 0; |
||||
border: none; |
||||
box-shadow: 0 1px 15px 0 rgba(21, 27, 38, 0.15); |
||||
max-height: calc(100vh - 100px); |
||||
overflow: auto; |
||||
} |
||||
.select-options li { |
||||
margin: 0; |
||||
text-indent: 15px; |
||||
transition: all 0.15s ease-in; |
||||
border-bottom: 1px solid #000; |
||||
text-align: center; |
||||
display: flex; |
||||
} |
||||
.select-options li:last-child { |
||||
border-bottom: none; |
||||
} |
||||
.select-options li[rel="hide"] { |
||||
display: none; |
||||
} |
||||
|
||||
.select-options.left li { |
||||
text-align: left; |
||||
} |
||||
.select .image-selected { |
||||
margin-right: 1rem; |
||||
} |
||||
.select .image-option { |
||||
width: 30px; |
||||
height: 30px; |
||||
border-radius: 100%; |
||||
align-self: center; |
||||
display: flex; |
||||
border: 1px solid var(--primary-green); |
||||
} |
||||
|
||||
.select .image-option.image-option-logo { |
||||
border: 1px solid var(--light-yellow); |
||||
} |
||||
|
||||
.select .image-option img { |
||||
width: 26px; |
||||
height: 18px; |
||||
object-fit: contain; |
||||
margin: auto; |
||||
} |
||||
|
||||
@media screen and (max-height: 700px) { |
||||
.select { |
||||
font-size: 13px; |
||||
height: 32px; |
||||
line-height: 32px; |
||||
border-radius: 16px; |
||||
} |
||||
|
||||
.select-styled { |
||||
height: 32px; |
||||
line-height: 32px; |
||||
border-radius: 16px; |
||||
font-size: 14px; |
||||
} |
||||
|
||||
.select-styled:after { |
||||
content: ""; |
||||
width: 26px; |
||||
height: 26px; |
||||
top: 4px; |
||||
right: 5px; |
||||
background: url(./../images/icon/ico_dropdown_border_white.png) 96% / 26px |
||||
no-repeat transparent; |
||||
} |
||||
.select-options { |
||||
padding: 32px 32px 0; |
||||
top: 0; |
||||
border-radius: 18px; |
||||
max-height: calc(100vh - 90px); |
||||
} |
||||
} |
@ -0,0 +1,189 @@ |
||||
.max430 { |
||||
max-width: 400px; |
||||
margin: 0 auto; |
||||
} |
||||
.top-image img { |
||||
width: 100%; |
||||
height: auto; |
||||
display: block; |
||||
} |
||||
h2.title { |
||||
font-family: "Myriadpro-Bold"; |
||||
font-size: 18px; |
||||
} |
||||
.login-form-container { |
||||
padding: 0; |
||||
} |
||||
.res-form-container { |
||||
padding: 40px 0 40px; |
||||
} |
||||
.help-block { |
||||
margin: 20px 0 0; |
||||
padding: 0 15px; |
||||
} |
||||
.form-sunE-button { |
||||
margin: 20px 0; |
||||
text-align: center; |
||||
} |
||||
.sunE-main-title .form-sunE-button { |
||||
margin: 0; |
||||
} |
||||
.sunE-custom-form a:hover { |
||||
color: #00b9b7; |
||||
text-decoration: none; |
||||
} |
||||
.sunE-line-or { |
||||
margin: 40px 0 0; |
||||
} |
||||
.sunE-line-or span { |
||||
width: 80px; |
||||
background: #f3ffff; |
||||
position: absolute; |
||||
display: block; |
||||
top: -9px; |
||||
left: calc(50% - 40px); |
||||
text-align: center; |
||||
} |
||||
.more-login { |
||||
margin: 30px 0 0; |
||||
} |
||||
.more-login img { |
||||
cursor: pointer; |
||||
} |
||||
.mr-5 { |
||||
margin-right: 5px; |
||||
} |
||||
.ml-5 { |
||||
margin-left: 5px; |
||||
} |
||||
.sunE-bottom-form { |
||||
margin: 20px 0 0; |
||||
} |
||||
.sunE-bottom-form p { |
||||
text-align: center; |
||||
} |
||||
.sunE-bottom-form p a { |
||||
font-family: "Myriadpro-Bold"; |
||||
} |
||||
|
||||
.sendMail-title { |
||||
color: #00b9b7; |
||||
margin: 100px 0 0px; |
||||
} |
||||
.profile-title { |
||||
color: #00b9b7; |
||||
margin: 30px 0; |
||||
} |
||||
.sunE-male-female { |
||||
width: 44px; |
||||
height: 44px; |
||||
text-align: center; |
||||
background: #fff; |
||||
border-radius: 33px; |
||||
border: none; |
||||
box-shadow: 0 1px 15px 0 rgba(21, 27, 38, 0.15); |
||||
margin: 20px 0 0 10px; |
||||
line-height: 60px; |
||||
display: inline-block; |
||||
cursor: pointer; |
||||
} |
||||
|
||||
.ico_male, |
||||
.ico_male_active { |
||||
width: 26px; |
||||
margin: 10px auto; |
||||
} |
||||
.ico_female, |
||||
.ico_female_active { |
||||
width: 20px; |
||||
margin: 5px auto; |
||||
} |
||||
.sunE-male-female.male .ico_male_active { |
||||
display: none; |
||||
} |
||||
.sunE-male-female.male .ico_male { |
||||
display: block; |
||||
} |
||||
.sunE-male-female.male.active .ico_male_active { |
||||
display: block; |
||||
} |
||||
.sunE-male-female.male.active .ico_male { |
||||
display: none; |
||||
} |
||||
.sunE-male-female.female .ico_female_active { |
||||
display: none; |
||||
} |
||||
.sunE-male-female.female .ico_female { |
||||
display: block; |
||||
} |
||||
.sunE-male-female.female.active .ico_female_active { |
||||
display: block; |
||||
} |
||||
.sunE-male-female.female.active .ico_female { |
||||
display: none; |
||||
} |
||||
.error-help { |
||||
margin: 20px 0 20px 15px; |
||||
} |
||||
.customErrorHelpClassName { |
||||
margin: 20px 0 0 0; |
||||
} |
||||
.error-help p { |
||||
font-size: 18px; |
||||
color: #e22028 !important; |
||||
line-height: 21px; |
||||
margin: 0; |
||||
padding: 0 0 0 0px; |
||||
} |
||||
.bg-login { |
||||
background-image: url("./../images/bg_auth_full_1.png"); |
||||
background-repeat: no-repeat; |
||||
background-size: cover; |
||||
min-height: 100vh; |
||||
} |
||||
.bg-login .version-app { |
||||
position: absolute; |
||||
bottom: 10px; |
||||
right: 10px; |
||||
} |
||||
.bg-register { |
||||
background-image: url("./../images/bg_auth_full_1.png"); |
||||
background-repeat: no-repeat; |
||||
background-size: cover; |
||||
min-height: 100vh; |
||||
} |
||||
|
||||
.bg-login .logo img, |
||||
.bg-register .logo img { |
||||
margin-top: 7px; |
||||
} |
||||
|
||||
.btn-re { |
||||
text-decoration: underline; |
||||
} |
||||
.more-login img { |
||||
width: 56px; |
||||
} |
||||
.form-sunE-button.mar-b-0 { |
||||
margin-bottom: 0 !important; |
||||
} |
||||
@media screen and (max-height: 800px) { |
||||
.error-help p { |
||||
font-size: 14px; |
||||
line-height: 20px; |
||||
} |
||||
} |
||||
@media screen and (max-width: 768px) { |
||||
.sunE-form-container { |
||||
padding: 0 10px; |
||||
} |
||||
.login-form-container { |
||||
padding: 100px 16px 40px; |
||||
} |
||||
.res-form-container { |
||||
padding: 100px 10px 40px; |
||||
} |
||||
.register_account_type .account_detail_placeholder { |
||||
height: 100px; |
||||
} |
||||
} |
After Width: | Height: | Size: 787 B |
After Width: | Height: | Size: 995 B |
After Width: | Height: | Size: 619 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 206 KiB |
After Width: | Height: | Size: 218 KiB |
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 106 KiB |
After Width: | Height: | Size: 112 KiB |
After Width: | Height: | Size: 175 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 133 KiB |
After Width: | Height: | Size: 208 KiB |
After Width: | Height: | Size: 214 KiB |
After Width: | Height: | Size: 270 KiB |
After Width: | Height: | Size: 206 KiB |
After Width: | Height: | Size: 94 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 108 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 131 KiB |
After Width: | Height: | Size: 117 KiB |
After Width: | Height: | Size: 116 KiB |
After Width: | Height: | Size: 94 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 165 KiB |
After Width: | Height: | Size: 719 KiB |
After Width: | Height: | Size: 116 KiB |
After Width: | Height: | Size: 122 KiB |
After Width: | Height: | Size: 102 KiB |
After Width: | Height: | Size: 100 KiB |
After Width: | Height: | Size: 137 KiB |
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 89 KiB |
After Width: | Height: | Size: 3.4 MiB |
After Width: | Height: | Size: 353 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 72 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 8.0 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 530 KiB |
After Width: | Height: | Size: 592 B |
After Width: | Height: | Size: 600 B |
After Width: | Height: | Size: 742 B |
After Width: | Height: | Size: 469 B |
After Width: | Height: | Size: 435 B |
After Width: | Height: | Size: 555 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 496 B |
After Width: | Height: | Size: 684 B |
After Width: | Height: | Size: 632 B |
After Width: | Height: | Size: 501 B |
After Width: | Height: | Size: 656 B |
After Width: | Height: | Size: 648 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 162 KiB |
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 36 KiB |