-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
109 lines (107 loc) · 1.88 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
108
109
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
header {
background-color: #004d40;
color: white;
padding: 1rem;
text-align: center;
display: flex;
align-items: center;
justify-content: space-between;
}
header img {
height: 50px;
}
#bio{
font-size: small;
font-weight: 100;
}
nav {
display: flex;
justify-content: center;
gap: 1rem;
background-color: #00796b;
padding: 0.5rem 0;
}
nav a {
color: white;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}
.btn {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #004d40;
color: white;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
}
.btn:hover {
background-color: #00332d;
}
footer {
text-align: center;
padding: 1rem;
background-color: #004d40;
color: white;
position: relative;
bottom: 0;
width: 100%;
}
.form-container {
background: white;
border: 1px solid #ddd;
border-radius: 10px;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
form label {
font-weight: bold;
display: block;
margin-top: 1rem;
}
form input, form select, form textarea, form button {
width: 100%;
padding: 0.5rem;
margin-top: 0.5rem;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}
form button {
background-color: #004d40;
color: white;
border: none;
cursor: pointer;
}
form button:hover {
background-color: #00332d;
}
@media (max-width: 600px) {
header {
flex-direction: column;
text-align: center;
}
nav {
flex-direction: column;
gap: 0.5rem;
}
main {
padding: 1rem;
}
}