-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
35 lines (31 loc) · 766 Bytes
/
styles.css
File metadata and controls
35 lines (31 loc) · 766 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
29
30
31
32
33
34
35
html {
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 16px;
line-height: 1.6;
color: #222;
background-color: #fff;
}
body {
margin: 0 auto;
padding: 2rem;
max-width: 720px;
}
pre {
padding: 1rem;
border-radius: 6px;
background: #f5f5f5;
overflow-x: auto;
font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}
a {
text-decoration: none;
background-color: #f0f0f0;
border-radius: 4px;
padding: 0.2em 0.4em;
color: #0366d6;
transition: background-color 0.2s ease;
}
a:hover {
background-color: #e2e2e2;
text-decoration: underline;
}