-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
37 lines (33 loc) · 1.07 KB
/
style.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 base {
[type='text'],
[type='password'],
[type='email'],
[type='number'],
[type='url'],
[type='date'],
[type='datetime-local'],
[type='month'],
[type='week'],
[type='time'],
[type='search'],
[type='tel'],
select,
[multiple],
textarea {
@apply w-full border-gray-300 dark:border-gray-500 rounded-lg shadow-sm focus:border-slate-500 dark:focus:border-slate-400 focus:ring-slate-500 dark:focus:ring-slate-400 focus:bg-slate-50 dark:focus:bg-slate-950/60 dark:bg-slate-900 placeholder:text-sm placeholder:font-light placeholder:text-slate-500/60 dark:placeholder:text-slate-400/80
}
[type='checkbox'],
[type='radio'] {
@apply rounded border-gray-300 dark:border-gray-500 text-slate-600 transition-colors focus:outline-none focus:ring-2 focus:ring-slate-500 dark:focus:ring-slate-400
}
select {
@apply dark:focus:text-slate-200
}
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}