-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
51 lines (44 loc) · 1022 Bytes
/
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
/* === GLOBAL STYLES === */
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #f8f9fa;
color: #343a40;
margin: 0;
padding: 0;
}
header {
background-color: #343a40;
color: #ffffff;
padding: 20px;
text-align: center;
}
main {
margin: 20px;
padding: 20px;
background-color: #ffffff;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #343a40;
color: #ffffff;
padding: 20px;
text-align: center;
}
nav {
margin: 20px 0;
}
nav ul {
list-style-type: none; /* Remove bullet points */
padding: 0;
display: flex; /* Arrange list items in a row */
justify-content: center; /* Center the list items */
}
nav ul li {
margin: 0 10px; /* Add some space between the list items */
}
nav ul li a {
text-decoration: none; /* Remove underline from links */
color: #343a40; /* Set the color of the links */
font-size: 18px; /* Increase the font size of the links */
}