-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (55 loc) · 1.14 KB
/
Copy pathstyles.css
File metadata and controls
65 lines (55 loc) · 1.14 KB
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
/* Reset some default browser styles */
body, h1, h2, p, ul {
margin: 0;
padding: 0;
}
/* Add a background color and some padding around the entire page */
body {
background-color: #f2f2f2;
padding: 20px;
font-family: Arial, sans-serif;
}
/* Style the header */
header {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
}
header h1 {
margin: 0;
padding: 0.2em;
}
header p {
margin: 0;
padding: 0.5em;
font-size: 1.2em;
}
/* Style each section */
section {
margin: 20px 0;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Add some spacing and font styling to section titles */
h2 {
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #ddd;
font-size: 1.5em;
}
/* Add some spacing and font styling to paragraphs */
p {
margin-bottom: 20px;
line-height: 1.6;
}
/* Add some basic link styling */
a {
color: #0077cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}