23 lines
481 B
1
@import url(https://fonts.bunny.net/css?family=bad-script:400|inter:400);
2
3
@tailwind base;
4
@tailwind components;
5
@tailwind utilities;
6
7
body {
8
@apply text-zinc-50 bg-zinc-900;
9
font-size: 100%;
10
font-family: 'Bad Script', handwriting;
11
}
12
13
a.link {
14
@apply text-inherit hover:text-white;
15
}
16
17
.cal {
18
font-family: 'Inter', sans-serif;
19
}
20
21
.input {
22
@apply w-full p-2 pl-3 bg-transparent shadow rounded outline-offset-2 overflow-hidden border border-zinc-700 items-center gap-4;
23
}
24