-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
52 lines (43 loc) · 1.16 KB
/
tailwind.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "signifier";
src: url("../fonts/sign.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "signifier";
src: url("../fonts/signbold.woff2") format("woff2");
font-weight: bold;
font-style: normal;
}
/* Font face for AppleGaramond Regular */
@font-face {
font-family: 'AppleGaramond';
font-style: normal;
font-weight: 400;
src: url('../fonts/AppleGaramond.ttf') format('truetype');
}
/* Font face for AppleGaramond Italic */
@font-face {
font-family: 'AppleGaramond';
font-style: italic;
font-weight: 400;
src: url('../fonts/AppleGaramond-Italic.ttf') format('truetype');
}
/* Font face for AppleGaramond Bold */
@font-face {
font-family: 'AppleGaramond';
font-style: normal;
font-weight: 700;
src: url('../fonts/AppleGaramond-Bold.ttf') format('truetype');
}
/* Font face for AppleGaramond Bold Italic */
@font-face {
font-family: 'AppleGaramond';
font-style: italic;
font-weight: 700;
src: url('../fonts/AppleGaramond-BoldItalic.ttf') format('truetype');
}