contact form

This commit is contained in:
2026-01-30 01:43:07 +01:00
parent 36bb12f656
commit 520be462f0
3 changed files with 795 additions and 406 deletions

View File

@@ -11,6 +11,7 @@
body {
@apply bg-white text-slate-800 font-serif antialiased selection:bg-slate-900 selection:text-white;
line-height: 1.8;
-webkit-tap-highlight-color: transparent;
}
/* Typography */
@@ -64,10 +65,30 @@
}
/* Focus states */
a, button, input, textarea {
-webkit-tap-highlight-color: transparent;
}
a:focus,
button:focus,
input:focus {
@apply outline-none ring-2 ring-slate-900 ring-offset-2 rounded-sm;
input:focus,
textarea:focus,
a:active,
button:active,
input:active,
textarea:active,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
outline: none !important;
outline: 0 !important;
box-shadow: none !important;
border-radius: inherit !important;
}
button::-moz-focus-inner {
border: 0 !important;
}
}