Skip to content

Commit b67b35e

Browse files
committed
Change font family to Tate
1 parent 8840e76 commit b67b35e

5 files changed

+25
-1
lines changed

fonts/Tate/Tate Bold Italic.otf

35 KB
Binary file not shown.

fonts/Tate/Tate Bold.otf

28.5 KB
Binary file not shown.

fonts/Tate/Tate Regular Italic.otf

33.2 KB
Binary file not shown.

fonts/Tate/Tate Regular.otf

28.6 KB
Binary file not shown.

styles.css

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
@font-face {
2+
font-family: Tate;
3+
src: url("./fonts/Tate/Tate\ Regular.otf") format("opentype");
4+
}
5+
6+
@font-face {
7+
font-family: Tate;
8+
font-weight: bold;
9+
src: url("./fonts/Tate/Tate\ Bold.otf") format("opentype");
10+
}
11+
12+
@font-face {
13+
font-family: Tate;
14+
font-style: italic;
15+
src: url("./fonts/Tate/Tate\ Regular\ Italic.otf") format("opentype");
16+
}
17+
18+
@font-face {
19+
font-family: Tate;
20+
font-weight: bold;
21+
font-style: italic;
22+
src: url("./fonts/Tate/Tate\ Bold\ Italic.otf") format("opentype");
23+
}
24+
125
/* Body */
226

327
html{
@@ -10,7 +34,7 @@ body{
1034
min-height: 100%;
1135
overflow-y: auto;
1236
overflow-x: hidden; /* Hide horizontal scrollbar */
13-
font-family: "Helvetica", sans-serif;
37+
font-family: "Tate", "Helvetica", sans-serif;
1438
font-weight: normal;
1539
font-size: 16px;
1640
line-height: normal;

0 commit comments

Comments
 (0)