-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.css
117 lines (91 loc) · 1.29 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.mt-4 {
margin-top: 1rem
}
.mt-6 {
margin-top: 1.5rem
}
.mt-2 {
margin-top: 0.5rem
}
.flex {
display: flex
}
.h-12 {
height: 3rem
}
.h-10 {
height: 2.5rem
}
.h-40 {
height: 10rem
}
.h-60 {
height: 15rem
}
.w-full {
width: 100%
}
.w-40 {
width: 10rem
}
.items-center {
align-items: center
}
.justify-center {
justify-content: center
}
.rounded-lg {
border-radius: 0.5rem
}
.bg-primary {
--tw-bg-opacity: 1;
background-color: rgb(0 102 255 / var(--tw-bg-opacity))
}
.bg-gray-5 {
--tw-bg-opacity: 1;
background-color: rgb(243 243 248 / var(--tw-bg-opacity))
}
.bg-gray-10 {
--tw-bg-opacity: 1;
background-color: rgb(229 229 235 / var(--tw-bg-opacity))
}
.bg-white {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}
.p-2 {
padding: 0.5rem
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem
}
.py-4 {
padding-top: 1rem;
padding-bottom: 1rem
}
.py-2 {
padding-top: 0.5rem;
padding-bottom: 0.5rem
}
.text-center {
text-align: center
}
.text-lg {
font-size: 1.125rem;
line-height: 1.75rem
}
.text-base {
font-size: 1rem;
line-height: 1.5rem
}
.font-bold {
font-weight: 700
}
.font-medium {
font-weight: 500
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity))
}