-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
83 lines (73 loc) · 1.7 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
@import url('https://fonts.googleapis.com/css2?family=BioRhyme:wght@200;300;400;700;800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Megrim&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
font-family: 'Montserrat';
}
body {
@apply bg-[#efedea] min-h-screen relative;
}
ul {
@apply list-none p-0;
}
::selection {
@apply bg-gray-300;
}
.inputField {
@apply bg-transparent
border border-gray-400
px-3
py-2
outline-none
w-full
mt-4
focus:border-gray-600
transition
appearance-none
placeholder-transparent;
}
.labelInput {
@apply bg-primary
px-1
font-normal
text-gray-600
absolute
top-[0.3rem]
text-sm
left-[0.8rem]
peer-placeholder-shown:top-[1.49rem]
peer-placeholder-shown:text-base
peer-placeholder-shown:text-gray-400
peer-focus:top-[0.3rem] peer-focus:text-sm peer-focus:text-gray-600
transition-all
pointer-events-none
select-none;
}
.btn {
@apply px-6
py-2
font-semibold
mt-2
inline-block
border border-solid border-black
my-2
transition
shadow-black
hover:shadow-gray
text-sm
z-[2]
relative
select-none
bg-[#ddd];
}
.btnDark {
@apply bg-black/90
!font-medium
text-white
transition
shadow-gray;
}
.isReady {
@apply !shadow-none relative translate-x-[5px] translate-y-[5px];
}