-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
72 lines (64 loc) · 1.07 KB
/
index.css
File metadata and controls
72 lines (64 loc) · 1.07 KB
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
/* General styles for the body */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: cyan;
color: #333;
text-align: center;
}
/* Header styles */
header {
background-color: #4CAF50;
color: white;
padding: 1rem;
text-align: center;
font-size: 1.5rem;
}
/* Main content styles */
main {
padding: 2rem;
text-align: center;
}
/* Paragraph styling */
p {
line-height: 1.6;
font-size: 1rem;
}
/* nav Styling */
nav {
padding: 0;
margin: 0;
background-color: #ADD8E6;
}
/* Footer styles */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
position: absolute;
bottom: 0;
width: 100%;
}
/* Links */
a {
color: #4CAF50;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Button styles */
button {
background-color: #4CAF50;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
font-size: 1rem;
border-radius: 5px;
}
button:hover {
background-color: #45a049;
}