-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
74 lines (64 loc) · 1.03 KB
/
styles.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
64
65
66
67
68
69
70
71
72
73
74
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: Palatino, sans-serif;
background-color: #f7f7f7;
color: #333;
padding: 20px;
max-width: 600px;
margin: auto;
}
/* Header Styling */
header {
text-align: center;
margin-bottom: 20px;
}
header h1 {
font-size: 2em;
color: #2c3e50;
}
header p {
font-size: 1.1em;
color: #555;
}
/* Section Styling */
section {
margin-bottom: 30px;
}
h2 {
font-size: 1.5em;
color: #2c3e50;
border-bottom: 2px solid #e74c3c;
padding-bottom: 5px;
margin-bottom: 15px;
}
h3 {
font-size: 1.2em;
color: #e74c3c;
margin-top: 15px;
margin-bottom: 10px;
}
/* List Styling */
ul {
list-style-type: none;
padding-left: 10px;
}
li {
font-size: 1em;
padding: 5px 0;
color: #555;
}
/* Footer Styling */
footer {
text-align: center;
padding: 10px 0;
font-size: 0.9em;
color: #888;
border-top: 1px solid #ddd;
margin-top: 20px;
}