blob: 0f7a5fe484028f2c81fb226b9aa90b7cc640a07f (
plain) (
blame)
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
|
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: "Hack", sans-serif;
src: url("../public/ttf/Hack-Regular.ttf");
}
@font-face {
font-family: "Hack", sans-serif;
src: url("../public/ttf/Hack-Italic.ttf");
font-style: italic;
}
@font-face {
font-family: "Hack", sans-serif;
src: url("../public/ttf/Hack-Bold.ttf");
font-weight: 700;
}
@font-face {
font-family: "Hack", sans-serif;
src: url("../public/ttf/Hack-BoldItalic.ttf");
font-weight: 700;
}
}
/*
html,
body {
padding: 0;
margin: 0;
height: 100%;
background-color: #484848;
color: #FFFFFF;
font-family: Hack;
src: url("/ttf/Hack-Regular.ttf");
}*/
|