blob: be88f3413e80dbbc3f39f190f36f80a21f85128f (
plain)
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
|
@font-face {
font-family: 'IBM Plex Sans';
src: url('/fonts/IBMPlexSans-Regular-Latin1.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Sans';
src: url('/fonts/IBMPlexSans-Bold-Latin1.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('/fonts/IBMPlexMono-Regular-Latin1.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'IBM Plex Mono';
src: url('/fonts/IBMPlexMono-Bold-Latin1.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}
body {
margin: 0 auto;
max-width: 1000px;
line-height: 1.6;
font-family: 'IBM Plex Sans', sans-serif;
padding: 0 10px;
}
pre, code, samp {
font-family: 'IBM Plex Mono', monospace;
}
pre {
background-color: #f0f0f0;
padding: 1em;
}
|