20 lines
405 B
1
@tailwind base;
2
@tailwind components;
3
@tailwind utilities;
4
5
body {
6
@apply text-zinc-800 bg-zinc-50;
7
font-size: 100%;
8
}
9
10
a.link {
11
@apply text-inherit hover:text-black hover:underline hover:underline-offset-4;
12
}
13
14
.cal {
15
font-family: 'Inter', sans-serif;
16
}
17
18
.input {
19
@apply overflow-hidden gap-4 items-center p-2 pl-3 w-full bg-transparent rounded border shadow outline-offset-2 border-zinc-700;
20
}
21