-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.css
53 lines (48 loc) · 960 Bytes
/
index.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
53
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "Space Grotesk";
font-style: normal;
font-weight: 300 700;
font-display: swap;
src: url("./assets/fonts/SpaceGrotesk-Variable.ttf") format("truetype");
}
@font-face {
font-family: "Inter";
font-style: normal;
font-weight: 100 900;
font-display: swap;
src: url("./assets/fonts/Inter-Variable.ttf") format("truetype");
}
@layer base {
h1 {
@apply text-2xl md:text-4xl lg:text-5xl;
}
h2 {
@apply text-xl md:text-3xl lg:text-4xl;
}
h3 {
@apply text-lg md:text-2xl lg:text-3xl;
}
h4 {
@apply text-base md:text-xl lg:text-2xl;
}
h5 {
@apply text-sm md:text-lg lg:text-xl;
}
h6 {
@apply text-xs md:text-base lg:text-lg;
}
p {
@apply text-base md:text-lg;
}
button {
@apply text-lg md:text-xl lg:text-2xl;
}
}
@layer components {
.ease {
@apply transition duration-300 ease-in-out;
}
}