-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (70 loc) · 1.2 KB
/
style.css
File metadata and controls
86 lines (70 loc) · 1.2 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=PT+Serif:wght@400;700&family=Source+Code+Pro&display=swap');
body {
color: #333;
font: 400 16px/1.5 'PT Serif', serif;
max-width: 768px;
margin: 1rem auto;
padding: 1rem 2rem;
}
h1, h2, h3 {
font-family: 'Inter', sans-serif;
font-weight: 700;
}
p { font-size: 1rem; }
h3 { font-size: 1.528rem; }
h2 { font-size: 1.888rem; }
h1 { font-size: 2.334rem; }
a {
color: inherit;
}
a:hover {
text-decoration: none;
}
pre, code {
background: #EBF9FF;
font-family: 'Source Code Pro', monospace;
line-height: 1.8;
}
code {
padding: 0.25rem 0.5rem;
}
pre {
padding: 1rem 3rem;
margin-left: -3rem;
margin-right: -3rem;
overflow: auto;
}
table {
border-collapse: collapse;
}
td {
padding: 0.5rem 0;
vertical-align: top;
}
td:nth-child(1) {
width: 30%;
text-align: right;
padding: 0.5rem 1rem;
}
tr:nth-child(odd) {
background: #EBF9FF;
}
.updated {
border-top: 1px solid #ddd;
padding-top: 1rem;
margin-top: 4rem;
}
.new {
font-size: 7pt;
text-transform: uppercase;
color: orangered;
font-weight: normal;
font-family: Inter, sans-serif;
}
.rss {
height: 1em;
margin-right: 8px;
}
.mb-3 {
margin-bottom: 3rem;
}