-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
37 lines (30 loc) · 831 Bytes
/
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.box {
@apply bg-blue-50 max-w-md flex flex-col items-center rounded-md mx-auto p-10 mt-10 shadow-lg hover: text-slate-500 transition
}
.itext {
@apply h-10 w-full rounded font-sans text-xl p-6 border-2
}
.icombo {
@apply itext p-0 px-4 h-12
}
.btn {
@apply bg-sky-300 px-5 py-3 font-sans hover:bg-sky-500 hover:text-white
}
.abtn {
@apply px-5 py-3 font-sans hover:bg-sky-500 hover:text-slate-50
}
.m-fadeOut {
visibility: hidden;
opacity: 0;
transition: visibility 0s linear 300ms, opacity 300ms;
}
.m-fadeIn {
visibility: visible;
opacity: 1;
transition: visibility 0s linear 0s, opacity 300ms;
}
}