generated from skills/github-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
28 lines (24 loc) · 739 Bytes
/
style.css
File metadata and controls
28 lines (24 loc) · 739 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
body {
color: #999; /* black text */
background-color: #000; /* optional: white bg for readability */
line-height: 1.6; /* easier to read paragraphs */
margin: 20px; /* give some padding around content */
}
h1, h2, h3, strong, p {
font-family: "Segoe UI", "Helvetica Neue", sans-serif; /* nicer sans-serif stack */
}
h1 { font-size: 2em; }
h2 { font-size: 1.6em; }
h3 { font-size: 1.3em; }
div.code {
background-color: #111; /* dark panel */
color: #999; /* chill gray text */
padding: 10px;
border-radius: 6px;
font-family: monospace;
white-space: pre; /* preserve formatting */
overflow-x: auto;
}
li {
font-family: monospace;
}