UNPKG

tailgrids

Version:

Handcrafted Library of Tailwind CSS UI Components & Blocks for HTML, React and Vue.

37 lines (35 loc) 1.26 kB
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>File Upload | TailGrids</title> <link rel="shortcut icon" href="../../assets/images/favicon.svg" type="image/x-icon" /> <link rel="stylesheet" href="../../assets/css/tailwind.css" /> </head> <body> <!-- ====== File Upload Start --> <section class="bg-white py-20 dark:bg-dark"> <div class="container"> <div class="w-full max-w-[400px]"> <label for="" class="mb-2.5 block text-base font-medium text-dark dark:text-white" > Default file input </label> <input type="file" class="w-full cursor-pointer rounded-lg border border-stroke text-dark-6 outline-hidden duration-200 file:mr-5 file:border-collapse file:cursor-pointer file:border-0 file:bg-dark-2 file:px-4 file:py-3 file:text-white file:hover:bg-dark/90 dark:border-dark-3 dark:file:bg-white/5 dark:file:hover:bg-white/10" /> </div> </div> </section> <!-- ====== File Upload End --> </body> </html>