-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
494 lines (417 loc) · 11.1 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
margin:0;
padding:0;
/*background-image: url('C://Users//saisa//Documents//phase-html-WDM//images//micah-williams-lmFJOx7hPc4-unsplash.jpg');
background-repeat: no-repeat;
background-attachment: fixed; */
}
/* Style the top navigation bar */
.topnav {
/* overflow: hidden; */
display: flex;
background: linear-gradient(to bottom, #42adff,#0064b1);
/* background-color: #333; */
justify-content: space-between;
/* height:70px; */
position: -webkit-sticky;
position: sticky;
top: 0;
}
/* Change color on hover */
.topnav a:hover {
color: black;
}
/* Style the topnav links */
/* .topnav a { */
/* float: left;ss */
/* display: block; */
/* color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
max-height: 100px;
} */
.logo-container{
display: flex;
align-items: center;
margin-left: 10px;
}
.logo {
height: 70px;
display: block;
float: left;
margin-left: 15px;
margin-right: 10px;
}
.site-name {
color: #f2f2f2;
font-size: 25px; /* Adjust font size as needed */
align-items: center;
line-height: 50px;
}
/* Style the burger icon */
.burger-icon {
font-size: 20px;
color: #f2f2f2;
text-decoration: none;
cursor: pointer;
width: 50px;
display: inline-block;
text-align: center;
line-height: 70px;
margin-right: 15px;
}
/* Change color on hover for the burger icon */
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
right: 0;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
line-height: 25px;
text-align: left;
}
.dropdown-content img{
height:25px;
/* padding: 12px 16px; */
line-height: 25px;
margin-right: 15px;
}
.dropdown {
display: inline-block;
align-items: center;
}
.dropdown:hover{
background-color: #ddd;
}
.dropdown-content a:hover {background-color: #0091ff;}
/* Create three equal columns that floats next to each other */
/* Clear floats after the columns */
.container_login {
display: flex;
flex-direction: column; /* Change to column to stack items vertically */
align-items: center;
height: 595px;
padding: 10px;
}
.container_sinup {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Center the container vertically on the page */
}
.container_forgot {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Center the container vertically on the page */
}
main {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section {
margin-bottom: 20px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 4px;
}
.forgot-password-form {
background-color: #ffffff; /* Form background color */
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 400px; /* Set the maximum width for the form */
}
.forgot-password-form h1 {
margin-bottom: 20px;
}
.forgot-password-form p {
margin-bottom: 20px;
font-size: 16px;
color: #555;
}
.forgot-password-form label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
.forgot-password-form input[type="email"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
}
.forgot-password-form input[type="submit"] {
background-color: #0091ff; /* Button background color */
color: #fff; /* Button text color */
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}
.forgot-password-form input[type="submit"]:hover {
background-color: #0064b1; /* Button background color on hover */
}
.login-form label,
.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="submit"] {
margin: 15px 0; /* Adjust the vertical margin as needed */
}
.login-form {
width: 300px;
margin: 0 auto;
text-align: center;
background-color: #f5f5f5; /* Background color for the form */
padding: 20px;
border-radius: 8px; /* Rounded corners for the form */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle 3D effect */
}
/* Style labels for form elements */
.login-form label {
display: block;
margin-bottom: 5px;
font-weight: bold; /* Bold labels */
}
/* Style text inputs and password inputs */
.login-form input[type="text"],
.login-form input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none; /* Remove default input focus outline */
transition: border-color 0.2s ease-in-out; /* Smooth border transition on focus */
}
/* Change input border color on focus */
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
border-color: #0091ff; /* Change border color on focus */
}
/* Style the submit button */
.login-form input[type="submit"] {
background-color: #0091ff; /* Button background color */
color: #fff; /* Button text color */
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s ease-in-out; /* Smooth background color transition on hover */
}
/* Change button background color on hover */
.login-form input[type="submit"]:hover {
background-color: #0064b1; /* Change background color on hover */
}
/* Optional: Style links within the form */
.login-form a {
text-decoration: none;
color: #0091ff; /* Link color */
transition: color 0.2s ease-in-out; /* Smooth link color transition on hover */
}
/* Change link color on hover */
.login-form a:hover {
color: #0064b1; /* Change link color on hover */
}
.signup-form {
background-color: #ffffff; /* Form background color */
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 400px; /* Set the maximum width for the form */
}
.signup-form h1 {
margin-bottom: 20px;
}
.signup-form label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
}
.signup-form input[type="submit"] {
background-color: #0091ff; /* Button background color */
color: #fff; /* Button text color */
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}
.signup-form input[type="submit"]:hover {
background-color: #0064b1; /* Button background color on hover */
}
/*.login-form {
width: 300px; /* Set the desired width for the form
margin: 0 auto; /* Center the form horizontally within the container */
/*text-align: center;
margin-top: 10px;
}*/
/* Style the footer */
.footer {
/* background-color: #f1f1f1; */
padding: 10px;
text-align: center;
bottom: 0;
display:flex;
flex-wrap: wrap;
background: #0064b1; /* Light gray or off-white color */
color: #f5f5f5; /* Text color for contrast */
justify-content: space-around;
}
.uta_logo{
float: left;
display: block;
left: 0;
/* max-width: 200px; */
height:auto;
}
.uni_info{
flex-grow: 1;
margin-left: 20px;
margin-top: auto;
margin-bottom: auto;
padding: 0;
float: left;
text-align: left;
}
.uni_info p, h3{ padding: 0; margin: 0;}
.contact-us {
display: flex;
/* flex-direction: column; */
align-items: center;
justify-content: flex-end space-evenly;
bottom: 0;
}
.contact-us img{
max-height: 30px;
margin-right: 20px;
justify-content: space-evely;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.topnav .dropdown,
.topnav div ,.topnav .logo-container {float:none;}
.topnav {
display: flex; /* Reset display property */
flex-direction: column; /* Change direction to column */
align-items: center; /* Center content horizontally */
margin-left: 0;
width: 100%;
}
/* Move the burger button below the logo container */
.burger-icon {
display: block;
margin: 10px auto; /* Adjust margin as needed for vertical alignment */
line-height: normal; /* Reset line-height to default */
}
.dropdown-content{
width: 100%;
align-items: center;
text-align: center;
}
.dropdown-content a{
text-align: center;
}
/* .footer {
flex-direction: column;
align-items: flex-start;
}
.contact-us {
display: flex;
align-items: center;
justify-content: flex-start;
}
.uni_info, .contact-us {
width: 100%;
order: 2;
} */
/* Style the footer */
.footer {
padding: 10px;
text-align: center;
bottom: 0;
display: flex;
background: #0064b1;
color: #f5f5f5;
flex-wrap: wrap; /* Wrap content to the next line if needed */
justify-content: space-between; /* Space between items */
}
.uta_logo {
flex: 1; /* Takes 1/3 of the available space */
order: 1; /* Display first on the left */
max-width: 100%;
height: auto;
}
.uni_info {
flex: 1; /* Takes 1/3 of the available space */
text-align: left;
padding-left: 20px;
order: 2; /* Display second on the right */
}
.uni_info h4 {
margin: 0;
font-size: 16px;
}
.uni_info p {
margin: 5px 0;
}
.contact-us {
flex: 1; /* Takes 1/3 of the available space */
align-items: center;
justify-content: space-evenly;
order: 3; /* Display third on the right */
}
.contact-us img {
max-height: 20px;
margin-right: 10px;
}
}
@media screen and (max-width: 600px) {
.footer {
font-size:6px;
}
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
.footer {
font-size:10px;
}
}
/*@media screen and (min-width: 1025px) {
.footer {
font-size:10px;
}*/
}