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