-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (56 loc) · 1.28 KB
/
Copy pathstyle.css
File metadata and controls
66 lines (56 loc) · 1.28 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
66
/* Basic Setup */
body {
font-family: Georgia, serif; /* A classic, readable serif font */
line-height: 1.6;
background-color: #ffffff;
color: #333333;
margin: 0;
padding: 20px;
}
/* Centered content column */
.container {
max-width: 800px;
margin: 40px auto; /* Centers the container on the page */
}
/* Header styles */
h1 {
font-size: 2.5em;
font-weight: normal;
color: #000000;
margin-bottom: 0.5em;
}
h2 {
font-size: 1.8em;
font-weight: normal;
color: #000000;
margin-top: 2em;
margin-bottom: 0.5em;
}
/* Divider line styles */
hr {
border: 0;
height: 1px;
}
hr.main-divider {
background-color: #8B0000; /* A dark red color */
height: 2px; /* Thicker line for the top */
}
hr.section-divider {
background-color: #4B0082; /* An indigo/purple color */
}
/* Link styles */
a {
color: #8B0000; /* Same dark red as the main divider */
text-decoration: none;
}
a:hover {
text-decoration: underline; /* Underline on hover for clarity */
}
/* List styles for Casual Writings */
ul {
list-style-type: none; /* Removes the default bullet points */
padding-left: 0;
}
ul li {
margin-bottom: 12px; /* Adds space between list items */
}