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
|
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Product Sans'), local('ProductSans-Regular'),
url('https://cdn.jsdelivr.net/gh/amzrk2/web-font-archive@1.0.0/product-sans/product-sans.woff2') format('woff2');
}
@font-face {
font-family: 'Product Sans';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Product Sans Bold'), local('ProductSans-Bold'),
url('https://cdn.jsdelivr.net/gh/amzrk2/web-font-archive@1.0.0/product-sans/product-sans-bold.woff2') format('woff2');
}
@font-face {
font-family: 'Cascadia Code';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Cascadia Code'), local('Cascadia Mono'),
url('https://cdn.jsdelivr.net/gh/amzrk2/web-font-archive@1.0.0/cascadia-code/cascadia.woff2') format('woff2'),
}
@font-face {
font-family: 'PingFang SC Web';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('PingFang SC Medium'),
/* Modern Browsers */
url('https://cdn.jsdelivr.net/gh/amzrk2/web-font-archive@1.0.0/pingfang/pingfang-medium.woff2') format('woff2'),
}
// @primer/css/support/variables/layout.scss
// Fixed-width container variables
$container-width: 900px;
// Large screen / desktop (900 + (16 * 2)) <= container + gutters
$width-lg: 932px;
// @primer/css/support/variables/typography.scss
// Font stacks
$body-font: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', 'Source Han Sans SC', 'Source Han Sans CN', 'Source Han Sans', 'Microsoft YaHei', sans-serif;
// Monospace font stack
$mono-font: 'Cascadia Code', 'SFMono-Regular', 'Consolas', $body-font;
// The base body size
$body-font-size: 16px;
|