-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (42 loc) · 1.05 KB
/
style.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
/* Reset default margin and padding for elements */
body, h1, h2, h3, p, ul, li {
margin: 0;
padding: 0;
}
/* Set dark background color and Verdana font */
body {
background-color: #333; /* Dark background color */
font-family: Verdana, Arial, sans-serif; /* Use Verdana font or fallback to Arial or sans-serif */
color: #fff; /* Set text color to white */
}
header {
background-color: #222; /* Header background color (darker) */
color: #fff;
padding: 20px;
text-align: center;
}
nav {
background-color: #111; /* Navigation background color (even darker) */
text-align: center;
}
nav ul {
list-style-type: none;
}
nav li {
display: inline;
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #fff;
}
/* Customize other sections, text colors, and styles as needed */
section {
padding: 20px;
}
footer {
background-color: #111; /* Footer background color (even darker) */
padding: 10px;
text-align: center;
color: #fff;
}