aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2024-01-02 17:58:28 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2024-01-02 17:58:28 +0100
commit454f78a7bb29e19ab0e505f84ee82163cb01d489 (patch)
tree5ce44d902b34610d5bc65abb0d03056afeeb896f /style.css
parent4ba802d0c73a1a1664b4d3e17757e54aeefd81f7 (diff)
downloadcats-radio-node-454f78a7bb29e19ab0e505f84ee82163cb01d489.tar.gz
cats-radio-node-454f78a7bb29e19ab0e505f84ee82163cb01d489.tar.bz2
cats-radio-node-454f78a7bb29e19ab0e505f84ee82163cb01d489.zip
Get config dialog to work
Diffstat (limited to 'style.css')
-rw-r--r--style.css20
1 files changed, 19 insertions, 1 deletions
diff --git a/style.css b/style.css
index 4c952e0..776dddb 100644
--- a/style.css
+++ b/style.css
@@ -16,12 +16,30 @@ h2 {
@apply font-bold;
}
+fieldset {
+ @apply rounded-md m-2 p-2 font-normal text-sky-700;
+ @apply outline outline-blue-500/10 hover:outline-blue-500/30
+}
+
+legend {
+ @apply p-1;
+ font-variant: small-caps;
+}
+
+label {
+ @apply p-2 m-1;
+}
+
+input {
+ @apply m-1;
+}
+
.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;
+ @apply rounded-md border border-2 border-zinc-200 px-1 py-1 text-sm font-normal text-sky-700 outline outline-0 focus:border-2 focus:border-zinc-500 focus:outline-0 disabled:border-0 disabled:bg-zinc-50;
}