forked from YuvBindal/AI_Hackfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
107 lines (87 loc) · 1.56 KB
/
index.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
/* Global styles */
* {
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: 0;
}
/* Header styles */
header {
background-color: #333;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 2vh 4vw;
}
.nav_elem {
list-style: none;
margin-right: 2vw;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav_elem {
margin-right: 20vw;
}
.nav_elem:last-child {
margin-right: 0;
}
.nav_elem a {
color: #fff;
text-decoration: none;
}
/* Main content styles */
main {
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 4vh 4vw;
}
h1 {
font-size: 5vw;
margin-bottom: 2vh;
}
p {
font-size: 3vw;
margin-bottom: 4vh;
}
form {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 4vh;
}
input[type="file"] {
margin-bottom: 2vh;
}
button[type="submit"] {
padding: 1vh 2vw;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
font-size: 2vw;
transition: all 0.2s ease;
}
button[type="submit"]:hover {
background-color: #fff;
color: #333;
}
/* Footer styles */
footer {
background-color: #f2f2f2;
padding: 2vh 4vw;
text-align: center;
}
footer p {
font-size: 2vw;
margin: 0;
}