From 96c6f2154007649c32fa5c29e04bb686df00dfff Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Mon, 1 Jan 2024 23:05:29 +0100 Subject: Create scaffolding --- style.css | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 style.css (limited to 'style.css') diff --git a/style.css b/style.css new file mode 100644 index 0000000..bd59995 --- /dev/null +++ b/style.css @@ -0,0 +1,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; +} + -- cgit v1.2.3