aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
blob: bd59995717e83a8c95fcff9a8f62975701b7bb37 (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
28
29
30
31
32
33
34
35
36
37
38
39
@tailwind base;

html {
  font-family: sans-serif;
}

@tailwind components;
@tailwind utilities;

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

h2 {
    @apply font-bold;
}

.toplevelbtn {
    @apply border border-2 border-zinc-700 text-gray-800 rounded-md px-3 py-2 text-sm font-medium;
    @apply hover:bg-gray-700 hover:text-white;
}

.toplevelbtn_active {
    @apply bg-gray-900 text-white;
}


.fieldset {
    @apply rounded-md border border-2 border-zinc-300 m-1 p-1 text-sm font-normal text-zinc-700;
    @apply outline outline-blue-500/10 hover:outline-blue-500/30
}

.fieldset-legend {
    @apply bg-zinc-100 w-max p-1;
    font-variant: small-caps;
    transform: translatey(-60%);
    margin: 0.1em;
}