Rohit001 commited on
Commit
055a4a7
1 Parent(s): b3f763b

Upload 2 files

Browse files
Files changed (2) hide show
  1. static/home.css +365 -0
  2. static/style.css +94 -0
static/home.css ADDED
@@ -0,0 +1,365 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .home-container {
2
+ width: 100%;
3
+ display: flex;
4
+ overflow: auto;
5
+ min-height: 100vh;
6
+ align-items: center;
7
+ flex-direction: column;
8
+ }
9
+ .home-navbar-interactive {
10
+ width: 100%;
11
+ display: flex;
12
+ position: relative;
13
+ align-items: center;
14
+ padding-top: var(--dl-space-space-twounits);
15
+ padding-left: var(--dl-space-space-threeunits);
16
+ padding-right: var(--dl-space-space-threeunits);
17
+ padding-bottom: var(--dl-space-space-twounits);
18
+ justify-content: space-between;
19
+ }
20
+ .home-logo {
21
+ width: 115px;
22
+ height: 44px;
23
+ }
24
+ .home-btn-group {
25
+ display: flex;
26
+ align-items: center;
27
+ flex-direction: row;
28
+ justify-content: space-between;
29
+ }
30
+ .home-login {
31
+ border-width: 0px;
32
+ margin-right: var(--dl-space-space-twounits);
33
+ }
34
+ .home-burger-menu {
35
+ display: none;
36
+ align-items: center;
37
+ justify-content: center;
38
+ }
39
+ .home-icon {
40
+ width: var(--dl-size-size-xsmall);
41
+ height: var(--dl-size-size-xsmall);
42
+ }
43
+ .home-mobile-menu {
44
+ top: 0px;
45
+ left: 0px;
46
+ width: 100%;
47
+ height: 100vh;
48
+ display: none;
49
+ padding: 32px;
50
+ z-index: 100;
51
+ position: fixed;
52
+ flex-direction: column;
53
+ justify-content: space-between;
54
+ background-color: #fff;
55
+ }
56
+ .home-nav {
57
+ display: flex;
58
+ align-items: flex-start;
59
+ flex-direction: column;
60
+ }
61
+ .home-container01 {
62
+ width: 100%;
63
+ display: flex;
64
+ align-items: center;
65
+ margin-bottom: var(--dl-space-space-threeunits);
66
+ justify-content: space-between;
67
+ }
68
+ .home-image {
69
+ height: 2rem;
70
+ }
71
+ .home-menu-close {
72
+ display: flex;
73
+ align-items: center;
74
+ justify-content: center;
75
+ }
76
+ .home-icon02 {
77
+ width: var(--dl-size-size-xsmall);
78
+ height: var(--dl-size-size-xsmall);
79
+ }
80
+ .home-nav1 {
81
+ flex: 0 0 auto;
82
+ display: flex;
83
+ align-items: flex-start;
84
+ flex-direction: column;
85
+ }
86
+ .home-text {
87
+ margin-bottom: var(--dl-space-space-unit);
88
+ }
89
+ .home-text01 {
90
+ margin-bottom: var(--dl-space-space-unit);
91
+ }
92
+ .home-text02 {
93
+ margin-bottom: var(--dl-space-space-unit);
94
+ }
95
+ .home-text03 {
96
+ margin-bottom: var(--dl-space-space-unit);
97
+ }
98
+ .home-text04 {
99
+ margin-bottom: var(--dl-space-space-unit);
100
+ }
101
+ .home-container02 {
102
+ flex: 0 0 auto;
103
+ width: auto;
104
+ display: flex;
105
+ margin-top: var(--dl-space-space-unit);
106
+ align-items: center;
107
+ flex-direction: row;
108
+ }
109
+ .home-login1 {
110
+ margin-right: var(--dl-space-space-twounits);
111
+ }
112
+ .home-icon-group {
113
+ display: flex;
114
+ }
115
+ .home-icon04 {
116
+ width: var(--dl-size-size-xsmall);
117
+ height: var(--dl-size-size-xsmall);
118
+ margin-right: var(--dl-space-space-twounits);
119
+ }
120
+ .home-icon06 {
121
+ width: var(--dl-size-size-xsmall);
122
+ height: var(--dl-size-size-xsmall);
123
+ margin-right: var(--dl-space-space-twounits);
124
+ }
125
+ .home-icon08 {
126
+ width: var(--dl-size-size-xsmall);
127
+ height: var(--dl-size-size-xsmall);
128
+ }
129
+ .home-text05 {
130
+ width: 517px;
131
+ }
132
+ .home-form {
133
+ width: 490px;
134
+ height: 519px;
135
+ display: flex;
136
+ z-index: 100;
137
+ margin-top: var(--dl-space-space-oneandhalfunits);
138
+ margin-bottom: 0px;
139
+ background-color: #D9D9D9;
140
+ }
141
+ .home-container03 {
142
+ flex: 0 0 auto;
143
+ width: 180px;
144
+ height: auto;
145
+ display: flex;
146
+ flex-direction: column;
147
+ }
148
+ .home-container04 {
149
+ flex: 0 0 auto;
150
+ width: 180px;
151
+ height: 144px;
152
+ display: flex;
153
+ padding-right: var(--dl-space-space-unit);
154
+ flex-direction: column;
155
+ }
156
+ .home-text07 {
157
+ height: var(--dl-size-size-small);
158
+ margin-top: var(--dl-space-space-unit);
159
+ margin-left: var(--dl-space-space-threeunits);
160
+ margin-right: var(--dl-space-space-threeunits);
161
+ }
162
+ .home-textinput {
163
+ width: 164px;
164
+ height: 33px;
165
+ padding-left: var(--dl-space-space-unit);
166
+ }
167
+ .home-container05 {
168
+ flex: 0 0 auto;
169
+ width: auto;
170
+ height: 144px;
171
+ display: flex;
172
+ flex-direction: column;
173
+ }
174
+ .home-text08 {
175
+ height: var(--dl-size-size-small);
176
+ align-self: center;
177
+ margin-top: var(--dl-space-space-unit);
178
+ margin-left: 0px;
179
+ }
180
+ .home-textinput1 {
181
+ width: var(--dl-size-size-large);
182
+ height: 33px;
183
+ align-self: stretch;
184
+ margin-left: var(--dl-space-space-halfunit);
185
+ padding-left: 1rem;
186
+ }
187
+ .home-container06 {
188
+ flex: 0 0 auto;
189
+ width: auto;
190
+ height: 144px;
191
+ display: flex;
192
+ flex-direction: column;
193
+ }
194
+ .home-text09 {
195
+ height: var(--dl-size-size-small);
196
+ align-self: center;
197
+ margin-top: var(--dl-space-space-unit);
198
+ margin-left: 0px;
199
+ }
200
+ .home-textinput2 {
201
+ width: var(--dl-size-size-large);
202
+ height: 33px;
203
+ align-self: stretch;
204
+ margin-top: 0px;
205
+ margin-left: var(--dl-space-space-halfunit);
206
+ padding-left: 1rem;
207
+ }
208
+ .home-container07 {
209
+ flex: 0 0 auto;
210
+ width: auto;
211
+ height: auto;
212
+ display: flex;
213
+ flex-direction: column;
214
+ }
215
+ .home-container08 {
216
+ flex: 0 0 auto;
217
+ width: auto;
218
+ height: 144px;
219
+ display: flex;
220
+ flex-direction: column;
221
+ }
222
+ .home-text10 {
223
+ height: var(--dl-size-size-small);
224
+ align-self: center;
225
+ margin-top: var(--dl-space-space-unit);
226
+ margin-left: var(--dl-space-space-halfunit);
227
+ }
228
+ .home-textinput3 {
229
+ width: var(--dl-size-size-large);
230
+ height: 33px;
231
+ align-self: stretch;
232
+ padding-left: var(--dl-space-space-halfunit);
233
+ }
234
+ .home-container09 {
235
+ flex: 0 0 auto;
236
+ width: auto;
237
+ height: 138px;
238
+ display: flex;
239
+ flex-direction: column;
240
+ }
241
+ .home-text11 {
242
+ height: var(--dl-size-size-small);
243
+ margin-top: var(--dl-space-space-unit);
244
+ margin-left: var(--dl-space-space-halfunit);
245
+ }
246
+ .home-textinput4 {
247
+ width: var(--dl-size-size-large);
248
+ height: 33px;
249
+ margin-left: 0px;
250
+ padding-left: 1rem;
251
+ }
252
+ .home-container10 {
253
+ flex: 0 0 auto;
254
+ width: auto;
255
+ height: 144px;
256
+ display: flex;
257
+ flex-direction: column;
258
+ }
259
+ .home-text12 {
260
+ height: var(--dl-size-size-small);
261
+ align-self: center;
262
+ margin-top: var(--dl-space-space-unit);
263
+ margin-left: 0px;
264
+ padding-top: var(--dl-space-space-halfunit);
265
+ }
266
+ .result {
267
+ height: var(--dl-size-size-small);
268
+ align-self: center;
269
+ margin-top: 20px;
270
+ margin-left: 30px;
271
+ padding-top: var(--dl-space-space-halfunit);
272
+ }
273
+ .home-textinput5 {
274
+ width: var(--dl-size-size-large);
275
+ height: 33px;
276
+ align-self: stretch;
277
+ margin-top: var(--dl-space-space-halfunit);
278
+ padding-left: 1rem;
279
+ }
280
+ .home-container11 {
281
+ flex: 0 0 auto;
282
+ width: auto;
283
+ height: auto;
284
+ display: flex;
285
+ flex-direction: column;
286
+ }
287
+ .home-container12 {
288
+ flex: 0 0 auto;
289
+ width: auto;
290
+ height: 144px;
291
+ display: flex;
292
+ flex-direction: column;
293
+ }
294
+ .home-text13 {
295
+ height: var(--dl-size-size-small);
296
+ align-self: center;
297
+ margin-top: var(--dl-space-space-unit);
298
+ margin-left: var(--dl-space-space-halfunit);
299
+ }
300
+ .home-textinput6 {
301
+ width: var(--dl-size-size-large);
302
+ height: 33px;
303
+ align-self: stretch;
304
+ margin-left: var(--dl-space-space-halfunit);
305
+ padding-left: 1rem;
306
+ }
307
+ .home-container13 {
308
+ flex: 0 0 auto;
309
+ width: auto;
310
+ height: 144px;
311
+ display: flex;
312
+ flex-direction: column;
313
+ }
314
+ .home-text14 {
315
+ height: var(--dl-size-size-small);
316
+ align-self: center;
317
+ margin-top: var(--dl-space-space-unit);
318
+ margin-left: var(--dl-space-space-halfunit);
319
+ }
320
+ .home-textinput7 {
321
+ width: var(--dl-size-size-large);
322
+ height: 33px;
323
+ align-self: stretch;
324
+ margin-left: var(--dl-space-space-halfunit);
325
+ padding-left: 1rem;
326
+ }
327
+ .home-button {
328
+ color: var(--dl-color-gray-white);
329
+ width: var(--dl-size-size-large);
330
+ align-self: center;
331
+ margin-top: var(--dl-space-space-twounits);
332
+ background-color: var(--dl-color-danger-500);
333
+ }
334
+ .home-text15 {
335
+ width: auto;
336
+ text-align: center;
337
+ }
338
+ .home-button1 {
339
+ color: var(--dl-color-gray-white);
340
+ width: var(--dl-size-size-large);
341
+ align-self: center;
342
+ margin-top: var(--dl-space-space-oneandhalfunits);
343
+ padding-right: 1rem;
344
+ background-color: var(--dl-color-primary-100);
345
+ }
346
+ @media(max-width: 767px) {
347
+ .home-navbar-interactive {
348
+ padding-left: var(--dl-space-space-twounits);
349
+ padding-right: var(--dl-space-space-twounits);
350
+ }
351
+ .home-btn-group {
352
+ display: none;
353
+ }
354
+ .home-burger-menu {
355
+ display: flex;
356
+ }
357
+ }
358
+ @media(max-width: 479px) {
359
+ .home-navbar-interactive {
360
+ padding: var(--dl-space-space-unit);
361
+ }
362
+ .home-mobile-menu {
363
+ padding: 16px;
364
+ }
365
+ }
static/style.css ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ :root {
2
+ --dl-color-gray-500: #595959;
3
+ --dl-color-gray-700: #999999;
4
+ --dl-color-gray-900: #D9D9D9;
5
+ --dl-size-size-large: 144px;
6
+ --dl-size-size-small: 48px;
7
+ --dl-color-danger-300: #A22020;
8
+ --dl-color-danger-500: #BF2626;
9
+ --dl-color-danger-700: #E14747;
10
+ --dl-color-gray-black: #000000;
11
+ --dl-color-gray-white: #FFFFFF;
12
+ --dl-size-size-medium: 96px;
13
+ --dl-size-size-xlarge: 192px;
14
+ --dl-size-size-xsmall: 16px;
15
+ --dl-space-space-unit: 16px;
16
+ --dl-color-primary-100: #003EB3;
17
+ --dl-color-primary-300: #0074F0;
18
+ --dl-color-primary-500: #14A9FF;
19
+ --dl-color-primary-700: #85DCFF;
20
+ --dl-color-success-300: #199033;
21
+ --dl-color-success-500: #32A94C;
22
+ --dl-color-success-700: #4CC366;
23
+ --dl-size-size-xxlarge: 288px;
24
+ --dl-size-size-maxwidth: 1400px;
25
+ --dl-radius-radius-round: 50%;
26
+ --dl-space-space-halfunit: 8px;
27
+ --dl-space-space-sixunits: 96px;
28
+ --dl-space-space-twounits: 32px;
29
+ --dl-radius-radius-radius2: 2px;
30
+ --dl-radius-radius-radius4: 4px;
31
+ --dl-radius-radius-radius8: 8px;
32
+ --dl-space-space-fiveunits: 80px;
33
+ --dl-space-space-fourunits: 64px;
34
+ --dl-space-space-threeunits: 48px;
35
+ --dl-space-space-oneandhalfunits: 24px;
36
+ }
37
+ .button {
38
+ color: var(--dl-color-gray-black);
39
+ display: inline-block;
40
+ padding: 0.5rem 1rem;
41
+ border-color: var(--dl-color-gray-black);
42
+ border-width: 1px;
43
+ border-radius: 4px;
44
+ background-color: var(--dl-color-gray-white);
45
+ }
46
+ .input {
47
+ color: var(--dl-color-gray-black);
48
+ cursor: auto;
49
+ padding: 0.5rem 1rem;
50
+ border-color: var(--dl-color-gray-black);
51
+ border-width: 1px;
52
+ border-radius: 4px;
53
+ background-color: var(--dl-color-gray-white);
54
+ }
55
+ .textarea {
56
+ color: var(--dl-color-gray-black);
57
+ cursor: auto;
58
+ padding: 0.5rem;
59
+ border-color: var(--dl-color-gray-black);
60
+ border-width: 1px;
61
+ border-radius: 4px;
62
+ background-color: var(--dl-color-gray-white);
63
+ }
64
+ .list {
65
+ width: 100%;
66
+ margin: 1em 0px 1em 0px;
67
+ display: block;
68
+ padding: 0px 0px 0px 1.5rem;
69
+ list-style-type: none;
70
+ list-style-position: outside;
71
+ }
72
+ .list-item {
73
+ display: list-item;
74
+ }
75
+ .teleport-show {
76
+ display: flex !important;
77
+ transform: none !important;
78
+ }
79
+ .Content {
80
+ font-size: 16px;
81
+ font-family: Inter;
82
+ font-weight: 400;
83
+ line-height: 1.15;
84
+ text-transform: none;
85
+ text-decoration: none;
86
+ }
87
+ .Heading {
88
+ font-size: 32px;
89
+ font-family: Inter;
90
+ font-weight: 700;
91
+ line-height: 1.15;
92
+ text-transform: none;
93
+ text-decoration: none;
94
+ }