-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (65 loc) · 1.05 KB
/
style.css
File metadata and controls
65 lines (65 loc) · 1.05 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
:root {
color-scheme: light dark;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.5;
}
body {
margin: 0;
background: #111827;
color: #f9fafb;
}
main {
max-width: 960px;
margin: 0 auto;
padding: 24px;
}
h1 {
margin: 0 0 12px;
font-size: 28px;
}
p {
margin: 0 0 16px;
}
code {
background: rgba(255,255,255,.08);
padding: 0.12rem 0.35rem;
border-radius: 6px;
}
.actions {
display: flex;
gap: 16px;
align-items: center;
margin: 20px 0;
flex-wrap: wrap;
}
button {
border: 0;
border-radius: 10px;
padding: 10px 16px;
font: inherit;
cursor: pointer;
}
dl.meta {
margin: 0 0 20px;
display: grid;
gap: 10px;
}
dl.meta > div {
display: grid;
grid-template-columns: 120px 1fr;
gap: 12px;
}
dt {
font-weight: 700;
}
pre {
white-space: pre-wrap;
word-break: break-word;
background: rgba(255,255,255,.08);
border: 1px solid rgba(255,255,255,.12);
border-radius: 12px;
padding: 16px;
min-height: 300px;
}
a { color: #93c5fd; }
.small { opacity: .8; font-size: 14px; }