-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfonts.scss
40 lines (34 loc) · 913 Bytes
/
fonts.scss
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
$base-font-size: 16px;
$base-font-family: "UntitledSans";
$base-font-color: $black;
$base-line-height: 1.5625;
$heading-font-family: "UntitledSerif";
$heading-line-height: 1.1;
$regular: 400;
$medium: 500;
$bold: 700;
@font-face {
font-family: "UntitledSans";
font-weight: $regular;
src: url("/fonts/untitled-sans-web-regular.woff") format("woff");
}
@font-face {
font-family: "UntitledSans";
font-weight: $medium;
src: url("/fonts/untitled-sans-web-medium.woff") format("woff");
}
@font-face {
font-family: "UntitledSans";
font-weight: $bold;
src: url("/fonts/untitled-sans-web-bold.woff") format("woff");
}
@font-face {
font-family: "UntitledSerif";
font-weight: $medium;
src: url("/fonts/untitled-serif-web-medium.woff") format("woff");
}
@font-face {
font-family: "UntitledSerif";
font-weight: $regular;
src: url("/fonts/untitled-serif-web-regular.woff") format("woff");
}