blob: e0525ed882af2364feab03aae751537fd18897db (
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
|
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: "Hack", monospace;
src: url("../public/ttf/Hack-Regular.ttf");
}
@font-face {
font-family: "Hack", monospace;
src: url("../public/ttf/Hack-Italic.ttf");
font-style: italic;
}
@font-face {
font-family: "Hack", monospace;
src: url("../public/ttf/Hack-Bold.ttf");
font-weight: 700;
}
@font-face {
font-family: "Hack", monospace;
src: url("../public/ttf/Hack-BoldItalic.ttf");
font-weight: 700;
}
}
@layer components {
.link {
@apply text-blue-500 hover:text-blue-300 active:text-blue-100
}
.button {
@apply bg-btn-gray sm:py-4 sm:px-10 py-2 px-5 rounded-lg hover:bg-gray-700 transition ease-in-out hover:border-2 hover:border-white active:bg-gray-300 hover:scale-95 active:scale-75 shadow-lg
}
}
|