-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (54 loc) · 949 Bytes
/
styles.css
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
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Inter:wght@400;600&display=swap");
body {
font-family: "Inter", sans-serif;
background-color: #f1f3f6;
color: #1c2430;
margin: 0;
}
header {
background-color: #fff;
padding: 1rem;
}
h1 {
font-size: 1rem;
margin: 0;
}
h2 {
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.75px;
color: #515e72;
}
main {
max-width: 40rem;
margin: 2rem auto;
padding: 0 1rem;
}
main > p {
margin-bottom: 2rem;
}
main > div {
background-color: #fff;
padding: 1rem;
border-radius: 0.25rem;
margin-bottom: 2rem;
}
pre {
font-family: "IBM Plex Mono", monospace;
font-size: 0.75rem;
}
ul {
padding: 0;
margin: 0;
margin-bottom: 2rem;
}
li {
list-style-type: none;
padding: 1rem;
background-color: #fff;
border-radius: 0.25rem;
margin-bottom: 1rem;
font-weight: 600;
border-radius: 0.25rem;
}