aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
blob: 4c952e0db5f2c53147e09e7911e3a36067c9814f (plain)
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
@tailwind base;

html {
  @apply bg-white;
  font-family: sans-serif;
}

@tailwind components;
@tailwind utilities;

h1 {
    @apply text-lg font-bold;
}

h2 {
    @apply font-bold;
}

.btn {
    @apply font-bold py-1 px-2 my-1 rounded;
    @apply bg-sky-500 hover:bg-sky-600 text-white;
}

.textinput {
    @apply rounded-md border border-2 border-zinc-200 px-1 py-1 text-sm font-normal text-zinc-700 outline outline-0 focus:border-2 focus:border-zinc-500 focus:outline-0 disabled:border-0 disabled:bg-zinc-50;
}