mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
15 lines
No EOL
610 B
HTML
15 lines
No EOL
610 B
HTML
<!-- From Uiverse.io by RashadGhzi - Tags: simple, form, input, hover effect, input effect , tailwind -->
|
|
<div class="w-full max-w-xs p-5 bg-white rounded-lg font-mono">
|
|
<label class="block text-gray-700 text-sm font-bold mb-2" for="unique-input"
|
|
>Your Label</label
|
|
>
|
|
<input
|
|
class="text-sm custom-input w-full px-4 py-2 border border-gray-300 rounded-lg shadow-sm transition duration-300 ease-in-out transform focus:-translate-y-1 focus:outline-blue-300 hover:shadow-lg hover:border-blue-300 bg-gray-100"
|
|
placeholder="Enter text here"
|
|
type="text"
|
|
id="unique-input"
|
|
/>
|
|
</div>
|
|
|
|
|
|
|