Skip to content

Commit 4c05830

Browse files
committed
login change
# Conflicts: # .gitignore # index.html # src/pages/LoginPage.tsx
1 parent f966907 commit 4c05830

File tree

6 files changed

+832
-0
lines changed

6 files changed

+832
-0
lines changed

.gitignore

Lines changed: 195 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,195 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/node,yarn,react,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,yarn,react,visualstudiocode
3+
4+
### Node ###
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
lerna-debug.log*
12+
.pnpm-debug.log*
13+
14+
# Diagnostic reports (https://nodejs.org/api/report.html)
15+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
16+
17+
# Runtime data
18+
pids
19+
*.pid
20+
*.seed
21+
*.pid.lock
22+
23+
# Directory for instrumented libs generated by jscoverage/JSCover
24+
lib-cov
25+
26+
# Coverage directory used by tools like istanbul
27+
coverage
28+
*.lcov
29+
30+
# nyc test coverage
31+
.nyc_output
32+
33+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34+
.grunt
35+
36+
.idea
37+
38+
# Bower dependency directory (https://bower.io/)
39+
bower_components
40+
41+
# node-waf configuration
42+
.lock-wscript
43+
44+
# Compiled binary addons (https://nodejs.org/api/addons.html)
45+
build/Release
46+
47+
# Dependency directories
48+
node_modules/
49+
jspm_packages/
50+
51+
# Snowpack dependency directory (https://snowpack.dev/)
52+
web_modules/
53+
54+
# TypeScript cache
55+
*.tsbuildinfo
56+
57+
# Optional npm cache directory
58+
.npm
59+
60+
# Optional eslint cache
61+
.eslintcache
62+
63+
# Optional stylelint cache
64+
.stylelintcache
65+
66+
# Microbundle cache
67+
.rpt2_cache/
68+
.rts2_cache_cjs/
69+
.rts2_cache_es/
70+
.rts2_cache_umd/
71+
72+
# Optional REPL history
73+
.node_repl_history
74+
75+
# Output of 'npm pack'
76+
*.tgz
77+
78+
# Yarn Integrity file
79+
.yarn-integrity
80+
81+
# dotenv environment variable files
82+
.env
83+
.env.development.local
84+
.env.test.local
85+
.env.production.local
86+
.env.local
87+
88+
# parcel-bundler cache (https://parceljs.org/)
89+
.cache
90+
.parcel-cache
91+
92+
# Next.js build output
93+
.next
94+
out
95+
96+
# Nuxt.js build / generate output
97+
.nuxt
98+
dist
99+
100+
# Gatsby files
101+
.cache/
102+
# Comment in the public line in if your project uses Gatsby and not Next.js
103+
# https://nextjs.org/blog/next-9-1#public-directory-support
104+
# public
105+
106+
# vuepress build output
107+
.vuepress/dist
108+
109+
# vuepress v2.x temp and cache directory
110+
.temp
111+
112+
# Docusaurus cache and generated files
113+
.docusaurus
114+
115+
# Serverless directories
116+
.serverless/
117+
118+
# FuseBox cache
119+
.fusebox/
120+
121+
# DynamoDB Local files
122+
.dynamodb/
123+
124+
# TernJS port file
125+
.tern-port
126+
127+
# Stores VSCode versions used for testing VSCode extensions
128+
.vscode-test
129+
130+
# yarn v2
131+
.yarn/cache
132+
.yarn/unplugged
133+
.yarn/build-state.yml
134+
.yarn/install-state.gz
135+
.pnp.*
136+
137+
### Node Patch ###
138+
# Serverless Webpack directories
139+
.webpack/
140+
141+
# Optional stylelint cache
142+
143+
# SvelteKit build / generate output
144+
.svelte-kit
145+
146+
### react ###
147+
.DS_*
148+
**/*.backup.*
149+
**/*.back.*
150+
151+
node_modules
152+
153+
*.sublime*
154+
155+
psd
156+
thumb
157+
sketch
158+
159+
### VisualStudioCode ###
160+
.vscode/*
161+
!.vscode/settings.json
162+
!.vscode/tasks.json
163+
!.vscode/launch.json
164+
!.vscode/extensions.json
165+
!.vscode/*.code-snippets
166+
167+
# Local History for Visual Studio Code
168+
.history/
169+
170+
# Built Visual Studio Code Extensions
171+
*.vsix
172+
173+
### VisualStudioCode Patch ###
174+
# Ignore all local history of files
175+
.history
176+
.ionide
177+
178+
### yarn ###
179+
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
180+
181+
.yarn/*
182+
!.yarn/releases
183+
!.yarn/patches
184+
!.yarn/plugins
185+
!.yarn/sdks
186+
!.yarn/versions
187+
188+
# if you are NOT using Zero-installs, then:
189+
# comment the following lines
190+
!.yarn/cache
191+
192+
# and uncomment the following lines
193+
# .pnp.*
194+
195+
# End of https://www.toptal.com/developers/gitignore/api/node,yarn,react,visualstudiocode

asset/style.css

Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
:root{
2+
--primary-color: #002F25;
3+
--primary-color-1: rgba(0, 47, 37, 0.4);
4+
--primary-color-2: #484848;
5+
--danger-color: #EB3E18;
6+
--success-color: #00C600;
7+
--white-color: #ffffff;
8+
--white-color-1: #f1f1f1;
9+
--primary-color-text: #002F25;
10+
--text-black: #000000;
11+
--text-gray: #959595;
12+
--bg-gray: #aeaeae;
13+
--card-bg: #F8F5F2;
14+
--additional-bg-color: #F8F5F2;
15+
--additional-color: #ECECEC;
16+
--additional-color-2: #C9C9C9;
17+
--shadow-1: 0px 3px 4px 0px rgba(0, 0, 0, 0.01);
18+
--rating-color: #f3bc75;
19+
}
20+
21+
22+
*{
23+
font-family: "Azeret Mono", monospace !important;
24+
margin: 0;
25+
box-sizing: border-box;
26+
&:before,&:after{
27+
box-sizing: border-box;
28+
}
29+
}
30+
31+
body{
32+
//font-family: "Philosopher", sans-serif;
33+
font-family: "Poppins", sans-serif;
34+
font-optical-sizing: auto;
35+
font-style: normal;
36+
background: #ffffff;
37+
color: #000;
38+
line-height: 1.5;
39+
font-size: 16px;
40+
-webkit-font-smoothing: antialiased;
41+
}
42+
43+
button,
44+
input,
45+
textarea,
46+
select{
47+
font: inherit;
48+
}
49+
50+
p,h1,h2,h3,h4,h5,h6{
51+
overflow-wrap: break-word;
52+
}
53+
54+
img,video,canvas,svg{
55+
max-width: 100%;
56+
}
57+
58+
a{
59+
text-decoration: none;
60+
color: inherit;
61+
}
62+
63+
ul{
64+
list-style: none;
65+
margin: 0;
66+
padding: 0;
67+
}
68+
69+
button{
70+
border: none;
71+
outline: none;
72+
cursor: pointer;
73+
}
74+
75+
.fs-12px{
76+
font-size: 12px;
77+
}
78+
79+
.fs-14px{
80+
font-size: 14px;
81+
}
82+
83+
.fs-16px{
84+
font-size: 16px;
85+
}
86+
87+
.fs-17px{
88+
font-size: 17px;
89+
}
90+
91+
.fs-18px{
92+
font-size: 18px;
93+
}
94+
95+
.fs-20px{
96+
font-size: 20px;
97+
}
98+
99+
.fs-21px{
100+
font-size: 21px;
101+
}
102+
103+
.fs-24px{
104+
font-size: 24px;
105+
}
106+
107+
.fs-25px{
108+
font-size: 25px;
109+
}
110+
111+
.fs-30px{
112+
font-size: 30px;
113+
}
114+
115+
.fs-38px{
116+
font-size: 38px;
117+
}
118+
119+
.fs-60px{
120+
font-size: 60px;
121+
}
122+
123+
.fw-400{
124+
font-weight: 400;
125+
}
126+
127+
.fw-500{
128+
font-weight: 500;
129+
}
130+
131+
.fw-600{
132+
font-weight: 600;
133+
}
134+
135+
.fw-700{
136+
font-weight: 700;
137+
}
138+
139+
.text--primary{
140+
color: var(--primary-color) !important;
141+
}
142+
143+
.bg--primary{
144+
background-color: var(--primary-color);
145+
}
146+
147+
.card-bg{
148+
background-color: var(--card-bg);
149+
}
150+
151+
.text-cs-secondary{
152+
color: var(--text-gray);
153+
}
154+
155+
156+
157+
.text-cs-black{
158+
color: var(--text-black);
159+
}

0 commit comments

Comments
 (0)