-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
81 lines (61 loc) · 1.65 KB
/
input.css
File metadata and controls
81 lines (61 loc) · 1.65 KB
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
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import 'tailwindcss';
@theme {
--font-sans: 'Rubik', sans-serif;
}
@layer base {
body {
@apply overflow-y-auto overflow-x-hidden;
}
}
@utility btn {
@apply btn-base bg-transparent border-2 border-slate-500 hover:bg-slate-500 transition-all btn-shadow btn-focus-visible;
}
@utility btn-ghost {
@apply btn-base bg-slate-100/5 hover:bg-slate-100/15 btn-shadow btn-focus-visible;
}
@utility btn-confirm {
@apply btn-base text-green-300 bg-transparent border-2 border-green-500 hover:text-green-500 hover:border-green-600 btn-shadow btn-focus-visible;
}
@utility btn-cancel {
@apply btn-base text-red-300 bg-transparent border-2 border-red-500 hover:text-red-500 hover:border-red-600 btn-shadow btn-focus-visible;
}
@utility btn-full-cancel {
@apply btn-base bg-red-500 border-red-500 hover:bg-red-400 hover:border-red-400 btn-shadow btn-focus-visible;
}
@utility btn-base {
@apply rounded-lg py-2 px-4;
}
@utility btn-icon {
@apply p-2;
}
@utility btn-shadow {
@apply shadow-violet-500 hover:shadow-md;
}
@utility btn-focus-visible {
@apply outline-violet-500 outline-offset-2 focus-visible:outline-2;
}
@utility guideline {
@apply absolute border border-slate-800 rounded-full box-border;
}
@utility square {
@apply absolute outline outline-slate-300 outline-offset-2 rounded-full;
}
@utility green {
@apply bg-green-500;
}
@utility white {
@apply bg-white;
}
@utility red {
@apply bg-red-500;
}
@utility orange {
@apply bg-orange-500;
}
@utility yellow {
@apply bg-yellow-400;
}
@utility blue {
@apply bg-blue-500;
}