-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (54 loc) · 1021 Bytes
/
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
52
53
54
55
56
57
58
59
60
61
62
63
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #333;
font-size: 16px;
line-height: 1.5;
}
header {
background-color: #87CEFA;
color: #fff;
padding: 20px;
}
header h1 {
margin: 0;
text-align: center;
font-size: 2.5rem;
margin-bottom: 1rem;
}
main {
padding: 20px;
}
section {
margin-bottom: 20px;
text-align: center;
border-bottom: 1px solid #ccc;
padding-bottom: 20px;
}
section h2 {
margin-top: 0;
display: block;
border-bottom: 1px solid #ccc;
text-align: center;
font-size: 2rem;
margin-bottom: 1rem;
}
ul {
list-style: radial-gradient(circle, #fff, #ccc);
list-style-position: inside;
padding-left: 0;
font-size: 1.2rem;
}
a {
text-decoration: none;
color: #40cef8;
}
footer {
background-color: #87CEFA;
color: #fff;
padding: 10px;
text-align: center;
font-size: 1.2rem;
margin-top: 20px;
}