-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
59 lines (53 loc) · 919 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
position: relative;
width: 100vw;
}
.link {
@apply text-blue-500 visited:text-purple-500 underline;
}
@media (prefers-color-scheme: dark) {
input[type="number"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="checkbox"],
input[type="date"],
select {
@apply text-white bg-slate-700;
}
input[type="checkbox"] {
@apply text-black bg-white;
}
textarea {
@apply bg-slate-700 text-white;
}
}
input[type="number"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="date"],
input[type="checkbox"],
select {
@apply rounded;
}
input[type="checkbox"] {
@apply cursor-pointer;
}
@keyframes opacity {
0% {
opacity: 30%;
}
50% {
opacity: 50%;
}
100% {
opacity: 30%;
}
}
.htmx-request {
animation: opacity 2s ease-in-out infinite;
}