-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
43 lines (36 loc) · 680 Bytes
/
index.css
File metadata and controls
43 lines (36 loc) · 680 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #530071; /* background page color */
color: white; /* change text color */
}
header {
background-color: #f5f5f5; /* give the head a different color */
padding: 20px;
text-align: center;
}
nav {
margin-top: 1vh;
}
nav a {
text-decoration: none;
color: #007BFF;
margin: 0 15px;
font-weight: bold;
}
.info {
margin-top: 2vh;
text-align: center; /* center alignment */
}
#list {
display: flex;
justify-content: center; /* center alignment */
}
ol {
list-style-type: decimal;
margin-left: 20px;
}
li {
margin-bottom: 10px;
}