-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.css
82 lines (66 loc) · 1.55 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
/* Never change this default! */
@apply text-black text-base;
}
a {
@apply text-primary hover:underline;
}
button:focus {
@apply outline-none;
}
h1 {
@apply text-2xl; /* 24px */
@apply font-bold;
@apply leading-p1 tracking-tightest;
}
h2 {
@apply text-xl; /* 21px */
@apply font-bold;
@apply leading-p1 tracking-tightest;
}
h3 {
@apply text-lg; /* 18px */
@apply font-bold;
@apply tracking-tightest;
}
h4 {
@apply text-md; /* 16 px */
@apply leading-p2 tracking-tightest;
}
h5 {
@apply text-base; /* 14 px */
@apply leading-p2 tracking-tightest;
}
h6 {
@apply text-sm; /* 14 px */
@apply leading-p3 tracking-tightest;
}
.p1 {
@apply text-md; /* 16px */
@apply leading-p1 tracking-tightest;
}
.p2 {
@apply text-base; /* 14px */
@apply leading-p2 tracking-tightest;
}
.p3 {
@apply text-sm; /* 12px */
@apply leading-p3 tracking-tightest;
}
.ui-badge .icon {
position: relative;
top: -1px;
}
sup {
top: -7px;
}
.font-bold {
@apply antialiased;
}
}