<div class="w-full">
<div class="overflow-hidden border border-gray-500 rounded-lg" x-data="{selected:1}">
<ul class="shadow-box">
<li class="relative rounded-t-lg bg-[#e7ebfc]">
<button type="button" class="w-full px-6 py-4 text-gray-500 transition-all"
@click="selected == 1 ? selected = null : selected = 1"
x-bind:style="selected == 1 ? 'color: #2e46ba; background-color:#d8ddfa;box-shadow: 0 0.125rem 0.25rem 0rem #3a57e84a;' : 'color: grey;'">
<div class="flex items-center justify-between">
<span>Accordion Item #1</span>
<span>
<svg xmlns="http://www.w3.org/2000/svg"
x-bind:style="selected == 1 ? 'transform: rotate(180deg)' : ''"
class="text-gray-600 w-7 h-7" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</span>
</div>
</button>
<div class="relative overflow-hidden transition-all max-h-0" style="" x-ref="container1"
x-bind:style="selected == 1 ? 'max-height: ' + $refs.container1.scrollHeight + 'px' : ''">
<div class="px-6 py-4 text-gray-600">
<strong>This is the first item's accordion body.</strong> It is hidden by default, until
the collapse plugin adds the appropriate classes that we use to style each element.
These classes control the overall appearance, as well as the showing and hiding via CSS
transitions. You can modify any of this with custom CSS or overriding our default
variables. It's also worth noting that just about any HTML can go within the
<span class="text-pink-600">.accordion-body</span>, though the transition does limit
overflow.
</div>
</div>
</li>
<li class="relative border-t border-gray-500 bg-[#e7ebfc]">
<button type="button" class="w-full px-6 py-4 text-gray-500 transition-all"
@click="selected !== 2 ? selected = 2 : selected = null"
x-bind:style="selected == 2 ? 'color: #2e46ba; background-color:#d8ddfa; box-shadow: 0 0.125rem 0.25rem 0rem #3a57e84a;' : 'color: grey;'">
<div class="flex items-center justify-between">
<span>Accordion Item #2</span>
<span>
<svg xmlns="http://www.w3.org/2000/svg"
x-bind:style="selected == 2 ? 'transform: rotate(180deg)' : ''"
class="text-gray-600 w-7 h-7" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</span>
</div>
</button>
<div class="relative overflow-hidden transition-all max-h-0" style="" x-ref="container2"
x-bind:style="selected == 2 ? 'max-height: ' + $refs.container2.scrollHeight + 'px' : ''">
<div class="px-6 py-4 text-gray-600">
<strong>This is the second item's accordion body.</strong> It is hidden by default,
until the collapse plugin adds the appropriate classes that we use to style each
element. These classes control the overall appearance, as well as the showing and hiding
via CSS transitions. You can modify any of this with custom CSS or overriding our
default variables. It's also worth noting that just about any HTML can go within the
<span class="text-pink-600">.accordion-body</span>, though the transition does limit
overflow.
</div>
</div>
</li>
<li class="relative transition-all border-t border-gray-500 rounded-b-lg bg-[#e7ebfc]">
<button type="button" class="w-full px-6 py-4 text-gray-500"
@click="selected !== 3 ? selected = 3 : selected = null"
x-bind:style="selected == 3 ? 'color: #2e46ba; background-color:#d8ddfa;box-shadow: 0 0.125rem 0.25rem 0rem #3a57e84a;' : 'color: grey;'">
<div class="flex items-center justify-between">
<span>Accordion Item #3</span>
<span>
<svg xmlns="http://www.w3.org/2000/svg"
x-bind:style="selected == 3 ? 'transform: rotate(180deg)' : ''"
class="text-gray-600 w-7 h-7" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</span>
</div>
</button>
<div class="relative overflow-hidden transition-all max-h-0" style="" x-ref="container3"
x-bind:style="selected == 3 ? 'max-height: ' + $refs.container3.scrollHeight + 'px' : ''">
<div class="py-4 px-6 text-gray-600">
<strong>This is the third item's accordion body.</strong> It is hidden by default, until
the collapse plugin adds the appropriate classes that we use to style each element.
These classes control the overall appearance, as well as the showing and hiding via CSS
transitions. You can modify any of this with custom CSS or overriding our default
variables. It's also worth noting that just about any HTML can go within the
<span class="text-pink-600">.accordion-body</span>, though the transition does limit
overflow.
</div>
</div>
</li>
</ul>
</div>
</div>
Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.
Whenever you need to, be sure to use margin utilities to keep things nice and tidy.
<div class="relative flex justify-between p-4 mb-4 text-white bg-blue-500 border-0 rounded">
<span> A simple primary alert with <a class="font-bold text-gray-400"> an example link .</a>
Give it a click if you like.
</span>
<button class="bg-transparent outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-4 h-4" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
<div class="mt-4">
<div class="relative flex justify-between p-4 mb-4 text-white bg-blue-100 border-2 border-blue-500 rounded">
<span class="text-blue-500"> A simple primary alert with <a class="font-bold text-blue-800"> an example link. </a>
Give it a click if you like.
</span>
<button class="bg-transparent outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-4 h-4" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
</div>
<div class="mt-4">
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol id="check-circle-fill" fill="#12703a" viewBox="0 0 16 16">
<path
d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z">
</path>
</symbol>
<symbol id="info-fill" fill="blue" viewBox="0 0 16 16">
<path
d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z">
</path>
</symbol>
<symbol id="exclamation-triangle-fill" fill="#a94a13" viewBox="0 0 16 16">
<path
d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z">
</path>
</symbol>
<symbol id="exclamation-triangle-fill1" fill="#862317" viewBox="0 0 16 16">
<path
d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z">
</path>
</symbol>
</svg>
<div class="relative flex justify-start p-4 mb-4 text-blue-600 bg-blue-100 border-2 border-blue-500 rounded">
<svg class="flex-shrink-0 mr-2" width="24" height="24">
<use xlink:href="#info-fill"></use>
</svg>
<div>
An example alert with an icon
</div>
</div>
<div class="relative flex justify-start p-4 mb-4 text-green-600 bg-green-100 border-2 border-green-500 rounded">
<svg class="flex-shrink-0 mr-2" width="24" height="24">
<use xlink:href="#check-circle-fill"></use>
</svg>
<div>
An example success alert with an icon
</div>
</div>
<div class="relative flex justify-start p-4 mb-4 text-orange-600 bg-orange-100 border-2 border-orange-500 rounded">
<svg class="flex-shrink-0 mr-2" width="24" height="24">
<use xlink:href="#exclamation-triangle-fill"></use>
</svg>
<div>
An example warning alert with an icon
</div>
</div>
<div class="relative flex justify-start p-4 mb-4 text-red-600 bg-red-100 border-2 border-red-500 rounded">
<svg class="flex-shrink-0 mr-2" width="24" height="24">
<use xlink:href="#exclamation-triangle-fill1"></use>
</svg>
<div>
An example danger alert with an icon
</div>
</div>
</div>
<div class="mt-4 ">
<div class="relative flex justify-between p-4 mb-4 text-green-600 bg-green-100 border-l-4 border-green-500 rounded ">
<span> This is a success alert—check it out!</span>
<button class="bg-transparent outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-4 h-4" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
<div class="relative flex justify-between p-4 mb-4 border-t-4 rounded text-cyan-600 bg-cyan-100 border-cyan-500">
<span> This is a info alert—check it out!</span>
<button class="bg-transparent outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-4 h-4" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
<div class="relative flex justify-between p-4 mb-4 text-orange-600 bg-orange-100 border-r-4 border-orange-500 rounded">
<span> This is a warning alert—check it out!</span>
<button class="bg-transparent outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-4 h-4" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
<div class="relative flex justify-between p-4 mb-4 text-red-600 bg-red-100 border-b-4 border-red-500 rounded">
<span> This is a danger alert—check it out!</span>
<button class="bg-transparent outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-4 h-4" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
</div>
<div class="mt-4">
<div class="relative flex justify-between p-4 mb-4 text-orange-600 bg-orange-100 border-2 border-orange-500">
<span> This is a warning alert—check it out!</span>
<button class="bg-transparent outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-4 h-4" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
<div class="relative flex justify-between p-4 mb-4 text-white bg-orange-500 ">
<span> This is a warning alert—check it out!</span>
<button class="bg-transparent outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-4 h-4" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
</div>
<div class="mt-4">
<div class="relative p-4 mb-4 text-green-600 bg-green-100 border-2 border-green-500 rounded">
<h5 class="text-xl font-medium">Well done!</h5>
<p class="mb-4">Aww yeah, you successfully read this important alert message. This example text is
going to run a bit longer so that you can see how spacing within an alert works with this kind of
content.</p>
<hr class="mb-4 text-green-500 border-green-500">
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.
</p>
</div>
</div>
Example heading New
Example heading New
Example heading New
Example heading New
Example heading New
Example heading New
<p class="text-3xl font-medium leading-tight md:text-4xl">Example heading
<span class="inline-block whitespace-nowrap px-2 leading-none md:text-3xl text-2xl font-bold text-white bg-blue-500 rounded">New</span>
</p>
<p class="text-2xl font-medium leading-tight md:text-3xl">Example heading
<span class="inline-block whitespace-nowrap px-2 leading-none md:text-2xl text-xl font-bold text-white bg-gray-600 rounded">New</span>
</p>
<p class="text-2xl font-medium leading-tight">Example heading
<span class="inline-block whitespace-nowrap px-2 leading-none text-xl pb-0.5 font-bold text-white bg-green-500 rounded">New</span>
</p>
<p class="text-xl font-medium leading-tight">Example heading
<span class="inline-block whitespace-nowrap px-2 leading-none text-lg pb-0.5 font-bold text-white bg-red-600 rounded">New</span>
</p>
<p class="text-lg font-medium leading-tight">Example heading
<span class="inline-block whitespace-nowrap px-2 leading-none pb-0.5 font-bold text-white bg-orange-500 rounded">New</span>
</p>
<p class=" font-medium leading-tight">Example heading
<span class="inline-block whitespace-nowrap px-2 leading-none text-sm pb-0.5 font-bold text-white bg-cyan-500 rounded">New</span>
</p>
<div class="mt-4">
<span class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-blue-500 rounded-full"> Primary </span>
<span class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-gray-600 rounded-full"> Secondary </span>
<span class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-green-500 rounded-full"> Success </span>
<span class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-red-500 rounded-full"> Danger </span>
<span class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-orange-500 rounded-full"> Warning </span>
<span class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-cyan-500 rounded-full"> Info </span>
<span class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-black bg-gray-300 rounded-full"> Light </span>
<span class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-black rounded-full"> Dark </span>
</div>
<nav>
<ol class="flex mb-4 text-sm text-gray-600 lg:">
<li>Home</li>
</ol>
</nav>
<nav>
<ol class="flex mb-4 text-sm text-gray-600 lg:">
<li class="pr-2 text-blue-500"><a href="#">Home</a></li><span>/</span>
<li class="pl-2">Library</li>
</ol>
</nav>
<nav>
<ol class="flex mb-4 text-sm text-gray-600 lg:">
<li class="pr-2 text-blue-500"><a href="#">Home</a></li><span>/</span>
<li class="px-2 text-blue-500"><a href="#">Library</a></li><span>/</span>
<li class="pl-2">Data</li>
</ol>
</nav>
<nav>
<ol class="flex mb-4 text-sm text-gray-600 lg:">
<li class="pr-2 text-blue-500"><a href="#">Home</a></li><span>></span>
<li class="pl-2">Library</li>
</ol>
</nav>
<nav>
<ol class="flex mb-4 text-sm text-gray-600 lg:">
<li class="text-blue-500 inline-flex items-center"><a href="#">Home</a></li>
<li class="pl-2 inline-flex items-center">
<svg class="w-auto h-5 pr-2 text-black" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"></path>
</svg>
Library
</li>
</ol>
</nav>
<div class="flex flex-wrap items-center">
<button class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600 ">Default</button>
<button class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded-full shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600 ">Rounded</button>
<button class="inline-flex justify-center px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded-full shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600 ">
<span class="mr-2">
<svg width="24" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z">
</path>
</svg>
</span>
With Icon
</button>
<button class="px-2 py-1 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600 ">
<span>
<svg width="24" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z">
</path>
</svg>
</span>
</button>
</div>
<div class="mt-4">
<button type="button" class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">Primary</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">Secondary</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-green-500 border border-green-500 rounded shadow-md hover:shadow-xl hover:bg-green-600 focus:bg-green-600">Success</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-red-500 border border-red-500 rounded shadow-md hover:shadow-xl hover:bg-red-600 focus:bg-red-600">Danger</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-orange-500 border border-orange-500 rounded shadow-md hover:shadow-xl hover:bg-orange-600 focus:bg-orange-600">Warning</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out border rounded shadow-md bg-cyan-500 border-cyan-500 hover:drop-shadow-lg hover:bg-cyan-600 focus:bg-cyan-600">Info</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-black transition-all duration-500 ease-in-out bg-gray-300 border border-gray-300 rounded shadow-md hover:drop-shadow-lg hover:bg-gray-400 focus:bg-gray-400">Light</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-gray-900 border border-gray-900 rounded shadow-md hover:drop-shadow-lg hover:bg-gray-900 focus:bg-gray-900">Dark</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-blue-500 transition-all duration-500 ease-in-out bg-transparent hover:text-blue-600 focus:shadow-lg rounded">Link</button>
</div>
<div class="mt-4">
<button type="button" class="px-6 py-2 mb-4 mr-4 text-blue-500 transition-all duration-500 ease-in-out border border-blue-500 rounded hover:shadow-md hover:bg-blue-500 hover:text-white">Primary</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-gray-600 transition-all duration-500 ease-in-out border border-gray-600 rounded hover:shadow-md hover:bg-gray-600 hover:text-white">Secondary</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-green-500 transition-all duration-500 ease-in-out border border-green-500 rounded hover:shadow-md hover:bg-green-500 hover:text-white">Success</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-red-500 transition-all duration-500 ease-in-out border border-red-500 rounded hover:shadow-md hover:bg-red-500 hover:text-white">Danger</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-orange-500 transition-all duration-500 ease-in-out border border-orange-500 rounded hover:shadow-md hover:bg-orange-500 hover:text-white">Warning</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 transition-all duration-500 ease-in-out border rounded text-cyan-500 border-cyan-500 hover:shadow-md hover:bg-cyan-500 hover:text-white">Info</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-gray-300 transition-all duration-500 ease-in-out border border-gray-300 rounded hover:shadow-md hover:bg-gray-300 hover:text-black">Light</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-gray-900 transition-all duration-500 ease-in-out border border-gray-900 rounded hover:shadow-md hover:bg-gray-900 hover:text-white">Dark</button>
</div>
<div class="mt-4">
<button type="button" class="px-2 py-0.5 mb-4 mr-4 text-sm text-white transition-all duration-500 ease-in-out border border-blue-500 bg-blue-500 rounded shadow-md hover:shadow-xl focus:bg-blue-600 hover:bg-blue-600 ">Ex small</button>
<button type="button" class="px-4 py-1 mb-4 mr-4 text-sm text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl focus:bg-blue-600 hover:bg-blue-600 ">Small button</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600 ">Default button</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-xl text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600 ">Large button</button>
</div>
<div class="mt-4">
<button type="button" class="px-6 py-2 mb-4 mr-4 transition-all duration-500 ease-in-out border border-transparent rounded shadow-md text-cyan-800 bg-cyan-100 hover:shadow-xl hover:bg-cyan-200 focus:bg-cyan-200 ">Info</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-blue-800 transition-all duration-500 ease-in-out bg-blue-100 border border-transparent rounded shadow-md hover:shadow-xl hover:bg-blue-200 focus:bg-blue-200">Primary</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-green-800 transition-all duration-500 ease-in-out bg-green-100 border border-transparent rounded shadow-md hover:shadow-xl hover:bg-green-200 focus:bg-green-200">Success</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-red-800 transition-all duration-500 ease-in-out bg-red-100 border border-transparent rounded shadow-md hover:shadow-xl hover:bg-red-200 focus:bg-red-200">Danger</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-orange-800 transition-all duration-500 ease-in-out bg-orange-100 border border-transparent rounded shadow-md hover:shadow-xl hover:bg-orange-200 focus:bg-orange-200">Warning</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-gray-800 transition-all duration-500 ease-in-out bg-gray-100 border border-transparent rounded shadow-md hover:shadow-xl hover:bg-gray-200 focus:bg-gray-200">Light</button>
<button type="button" class="px-6 py-2 mb-4 mr-4 text-gray-900 transition-all duration-500 ease-in-out bg-gray-400 border border-transparent rounded shadow-md hover:shadow-xl hover:bg-gray-500 focus:bg-gray-500">Dark</button>
</div>
<div class="flex flex-wrap justify-start">
<div class="relative inline-flex mr-2">
<button type="button"class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded-l shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">1</button>
<button type="button"class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">2</button>
<button type="button"class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">3</button>
<button type="button"class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded-r shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">4</button>
</div>
<div class="relative inline-flex mr-2">
<button type="button" class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded-l shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">5</button>
<button type="button" class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">6</button>
<button type="button" class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded-r shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">7</button>
</div>
<div class="relative inline-flex">
<button type="button" class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">8</button>
</div>
</div>
<div class="mt-4">
<div class="relative inline-flex flex-wrap">
<button type="button" class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded-l shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">Home</button>
<button type="button" class="px-6 py-2 text-blue-500 transition-all duration-500 ease-in-out border-t border-b border-l border-blue-500 shadow-md hover:shadow-xl hover:bg-blue-500 hover:text-white">Profile</button>
<button type="button" class="px-6 py-2 text-blue-500 transition-all duration-500 ease-in-out border border-blue-500 rounded-r shadow-md hover:shadow-xl hover:bg-blue-500 hover:text-white">Message</button>
</div>
</div>
<div class="mt-4">
<div class="relative inline-flex flex-col">
<button type="button" class="px-6 py-2 text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded-t shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">Home</button>
<button type="button" class="px-6 py-2 text-blue-500 transition-all duration-500 ease-in-out border-b border-l border-r border-blue-500 shadow-md hover:shadow-xl hover:bg-blue-500 hover:text-white">Profile</button>
<button type="button" class="px-6 py-2 text-blue-500 transition-all duration-500 ease-in-out border-b border-l border-r border-blue-500 rounded-b shadow-md hover:shadow-xl hover:bg-blue-500 hover:text-white">Message</button>
</div>
</div>
<div class="bg-white">
<div class="input-group w-full">
<label class="text-gray-600">Date Picker</label>
<input type="text" class="date_flatpicker block w-full mt-1 px-4 py-2 placeholder-gray-600 border focus:border-blue-500 focus:bg-white focus:shadow rounded-md outline-none">
</div>
<div class="flex justify-between flex-wrap mt-4 w-full">
<div class="input-group w-full">
<label class="text-gray-600">Date-Range Picker</label>
<input type="text" class="range_flatpicker block w-full mt-1 px-4 py-2 placeholder-gray-600 border focus:bg-white focus:border-blue-500 focus:shadow rounded-md outline-none">
</div>
</div>
<div class="mt-4">
<div class="input-group w-2/5">
<div class="inline_flatpickr"></div>
</div>
</div>
</div>
Some quick example text to build on the card title and make up the bulk of the card's content.
Go SomewhereSome quick example text to build on the card title and make up the bulk of the card's content.
Go SomewhereSome quick example text to build on the card title and make up the bulk of the card's content.
This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.
Last updated 3 mins ago
<div class="flex flex-wrap">
<div class="px-3 mt-6">
<div class="max-w-xs mb-0 overflow-hidden rounded-lg shadow-lg">
<svg class="object-cover w-full h-48" width="100%" height="180" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#868e96"></rect><text x="40%" y="50%" fill="#dee2e6"dy=".3em">Image cap</text>
</svg>
<div class="px-6 py-4">
<h5 class="mb-3 text-xl font-semibold text-black">Card title</h5>
<p class="mb-4 text-gray-600">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="inline-flex justify-center px-6 py-2 text-sm font-medium text-white transition-all duration-500 ease-in-out bg-blue-500 border border-transparent rounded shadow-sm hover:shadow-lg hover:bg-blue-600 ">
Go Somewhere</a>
</div>
</div>
</div>
<div class="px-3 mt-6">
<div class="max-w-xs mb-0 overflow-hidden rounded-lg shadow-lg">
<div class="p-6 pb-0"> Featured </div>
<div class="px-6 py-4">
<h5 class="mb-3 text-xl font-semibold text-black">Card title</h5>
<p class="mb-4 text-gray-600">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="inline-flex justify-center px-6 py-2 text-sm font-medium text-white transition-all duration-500 ease-in-out bg-blue-500 border border-transparent rounded shadow-sm hover:shadow-lg hover:bg-blue-600 ">
Go Somewhere</a>
</div>
<div class="p-6">2 days ago</div>
</div>
</div>
<div class="px-3 mt-6">
<div class="max-w-xs mb-0 overflow-hidden rounded-lg shadow-lg">
<div class="px-6 py-4">
<h5 class="mb-3 text-xl font-semibold text-black">Card title</h5>
<p class="mb-4 text-gray-600">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<ul>
<li class="px-4 py-2 border-b">An item</li>
<li class="px-4 py-2 border-b">A second item</li>
<li class="px-4 py-2 ">A third item</li>
</ul>
<div class="px-6 py-4">
<a href="#" class="text-blue-500">Card link</a>
<a href="#" class="ml-6 text-blue-500">Another link</a>
</div>
</div>
</div>
<div class="px-3 mt-6">
<div class="w-full max-w-xs overflow-hidden shadow-lg sm:flex">
<div class="md:w-1/3">
<svg class="object-cover w-full h-60" xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#868e96"></rect><text x="30%" y="50%" fill="#dee2e6" dy=".3em">Image</text>
</svg>
</div>
<div class="flex-1 px-6 py-4">
<h5 class="mb-3 text-xl font-semibold text-black">Card title</h5>
<p class="mb-4 text-gray-600">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="mb-4 text-gray-700"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
First slide label
Some representative placeholder content for First slide
second slide label
Some representative placeholder content for Second slide
Third slide label
Some representative placeholder content for Third slide
<div class="block" data-tab-content="true" id="carouselsection">
<div class="custom-swiper-slider">
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide relative">
<svg class="block w-full" width="800" height="400" xmlns="http://www.w3.org/2000/svg" role="img">
<rect width="100%" height="100%" fill="#777"></rect><text x="46%" y="50%" fill="#555" dy="0rem">First slide</text>
</svg>
<div class="absolute text-white w-full block bottom-12 text-center">
<div class="text-black text-2xl">
<p>First slide label</p>
</div>
<div>
<p>Some representative placeholder content for First slide</p>
</div>
</div>
</div>
<div class="swiper-slide">
<svg class="block w-full" width="800" height="400" xmlns="http://www.w3.org/2000/svg" role="img">
<rect width="100%" height="100%" fill="#666"></rect><text x="46%" y="50%" fill="#444" dy="0rem">Second slide</text>
</svg>
<div class="absolute text-white bottom-12 w-full text-center">
<div class="text-black text-2xl">
<p>second slide label</p>
</div>
<p>Some representative placeholder content for Second slide</p>
</div>
</div>
<div class="swiper-slide">
<svg class="block w-full" width="800" height="400" xmlns="http://www.w3.org/2000/svg" role="img">
<rect width="100%" height="100%" fill="#555"></rect><text x="46%" y="50%" fill="#333" dy="0rem">Third slide</text>
</svg>
<div class="absolute inline-block text-white bottom-12 w-full text-center">
<div class="text-black text-2xl">
<p>Third slide label</p>
</div>
<p>Some representative placeholder content for Third slide</p>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
<div class="mt-1 mb-8 flex justify-between items-center flex-wrap">
<div x-data="{ open: false }" class="inline-block">
<button
class="inline-block px-4 py-1 mr-4 text-sm text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
type="button" @click="open = ! open"> Dropdown Button
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg>
</button>
<ul x-show="open"
class="z-10 py-2 absolute text-left text-gray-500 bg-white border rounded min-w-36"
@click.outside="open = false" x-transition.duration.500ms>
<li>
<h6 class="block px-4 py-2 mb-0 text-sm text-gray-600 whitespace-nowrap">Dropdown header
</h6>
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
<li>
<hr class="mx-2 mt-1 mb-1 overflow-hidden border-t">
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Separated link</a></li>
</ul>
</div>
<div x-data="{ open: false }" class="inline-block">
<button @click="open = ! open"
class="inline-block px-6 py-2 mr-4 mt-4 md:mt-0 text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
type="button">Dropdown Button
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg> </button>
<ul x-show="open"
class="z-10 py-2 absolute text-left text-gray-500 bg-white border rounded min-w-36"
@click.outside="open = false" x-transition.duration.500ms>
<li>
<h6 class="block px-4 py-2 mb-0 text-sm text-gray-600 whitespace-nowrap">Dropdown header
</h6>
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
<li>
<hr class="mx-2 mt-1 mb-1 overflow-hidden border-t">
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Separated link</a></li>
</ul>
</div>
<div x-data="{ open: false }" class="inline-block">
<button @click="open = ! open"
class="inline-block px-6 py-2 mr-4 mt-4 md:mt-0 text-xl text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
type="button">Dropdown Button
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg> </button>
<ul x-show="open"
class="z-10 py-2 absolute text-left text-gray-500 bg-white border rounded min-w-36"
@click.outside="open = false" x-transition.duration.500ms>
<li>
<h6 class="block px-4 py-2 mb-0 text-sm text-gray-600 whitespace-nowrap">Dropdown header
</h6>
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
<li>
<hr class="mx-2 mt-1 mb-1 overflow-hidden border-t">
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Separated link</a></li>
</ul>
</div>
</div>
<div>
<div x-data="{ open: false }" class="relative inline-block">
<div class="flex mt-4">
<button
class="inline-block px-6 py-2 text-center text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded-l shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">
Primary
</button>
<button type="button" @click="open = ! open"
class="inline-block px-6 py-2 mr-4 text-center text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded-r shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg></button>
</div>
<ul x-show="open" @click.outside="open = false" x-transition.duration.500ms
class="z-10 absolute py-2 -right-24 text-gray-500 bg-white border rounded min-w-36">
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
</ul>
</div>
<div x-data="{ open: false }" class="relative inline-block">
<div class="flex mt-4">
<button
class="inline-block px-6 py-2 text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded-l shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">
Secondary
</button>
<button type="button" @click="open = ! open"
class="inline-block px-6 py-2 mr-4 text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded-r shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700">
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg>
</button>
</div>
<ul x-show="open" @click.outside="open = false" x-transition.duration.500ms
class="z-10 absolute -right-24 py-2 text-left text-gray-500 bg-white border rounded min-w-36">
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
</ul>
</div>
<div x-data="{ open: false }" class="relative inline-block">
<div class="flex mt-4">
<button
class="inline-block px-6 py-2 text-center text-white transition-all duration-500 ease-in-out bg-green-500 border border-green-500 rounded-l shadow-md hover:shadow-xl hover:bg-green-600 focus:bg-green-600">Success
</button>
<button type="button" @click="open = ! open"
class="inline-block px-6 py-2 mr-4 text-center text-white transition-all duration-500 ease-in-out bg-green-500 border border-green-500 rounded-r shadow-md hover:shadow-xl hover:bg-green-600 focus:bg-green-600">
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg></button>
</div>
<ul x-show="open" @click.outside="open = false" x-transition.duration.500ms
class="z-10 absolute -right-24 py-2 text-left text-gray-500 bg-white border rounded min-w-36">
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
</ul>
</div>
<div x-data="{ open: false }" class="relative inline-block">
<div class="flex mt-4">
<button type="button"
class="inline-block px-6 py-2 text-center text-white transition-all duration-500 ease-in-out border rounded-l shadow-md bg-cyan-500 border-cyan-500 hover:shadow-xl hover:bg-cyan-600 focus:bg-cyan-600">
Info
</button>
<button type="button"
class="inline-block px-6 py-2 mr-4 text-center text-white transition-all duration-500 ease-in-out border rounded-r shadow-md bg-cyan-500 border-cyan-500 hover:shadow-xl hover:bg-cyan-600 focus:bg-cyan-600"
@click="open = ! open">
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg>
</button>
</div>
<ul x-show="open" @click.outside="open = false" x-transition.duration.500ms
class="z-10 absolute -right-24 py-2 text-left text-gray-500 bg-white border rounded min-w-36">
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
</ul>
</div>
<div x-data="{ open: false }" class="relative inline-block">
<div class="flex mt-4">
<button type="button"
class="inline-block px-6 py-2 text-center text-white transition-all duration-500 ease-in-out bg-orange-500 border border-orange-500 rounded-l shadow-md hover:shadow-xl hover:bg-orange-600 focus:bg-orange-600">Warning
</button>
<button type="button"
class="inline-block px-6 py-2 mr-4 text-center text-white transition-all duration-500 ease-in-out bg-orange-500 border border-orange-500 rounded-r shadow-md hover:shadow-xl hover:bg-orange-600 focus:bg-orange-600"
@click="open = ! open">
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg></button>
</div>
<ul x-show="open" @click.outside="open = false" x-transition.duration.500ms
class="z-10 absolute -right-24 py-2 text-left text-gray-500 bg-white border rounded min-w-36">
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
</ul>
</div>
<div x-data="{ open: false }" class="relative inline-block">
<div class="flex mt-4">
<button
class="inline-block px-6 py-2 text-center text-white transition-all duration-500 ease-in-out bg-red-500 border border-red-500 rounded-l shadow-md hover:shadow-xl hover:bg-red-600 focus:bg-red-600">Danger
</button>
<button type="button" @click="open = ! open"
class="inline-block px-6 py-2 mr-4 text-center text-white transition-all duration-500 ease-in-out bg-red-500 border border-red-500 rounded-r shadow-md hover:shadow-xl hover:bg-red-600 focus:bg-red-600">
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg></button>
</div>
<ul x-show="open" @click.outside="open = false" x-transition.duration.500ms
class="z-10 absolute -right-24 py-2 text-left text-gray-500 bg-white border rounded min-w-36">
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
</ul>
</div>
</div>
<div class="mt-8 mb-4 flex justify-between flex-wrap">
<div x-data="{ open: false }" class="relative inline-block">
<button @click="open = ! open"
class="inline-block px-6 py-2 mr-4 mb-4 text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
type="button">Dropend button
<svg class="inline-block w-4 h-4 mb-1 "
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
<path
d="M181.65674,122.34277l-80-80A8.0001,8.0001,0,0,0,88,48V208a8.00018,8.00018,0,0,0,13.65674,5.65723l80-80A8.00034,8.00034,0,0,0,181.65674,122.34277Z">
</path>
</svg></button>
<ul x-show="open"
class="z-10 absolute top-0 md:left-44 left-28 ml-3 px-2 text-left text-gray-500 bg-white border rounded min-w-36"
@click.outside="open = false" x-transition.duration.500ms>
<li>
<h6 class="block px-4 py-1 mb-0 text-sm text-gray-600 whitespace-nowrap">Dropdown header
</h6>
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
<li>
<hr class="mx-2 overflow-hidden border-t mt-1 mb-1">
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Separated link</a></li>
</ul>
</div>
<div x-data="{ open: false }" class="relative inline-block mb-4">
<button @click="open = ! open"
class="inline-block px-6 py-2 mr-4 text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
type="button">Dropup button
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-4 h-4 mb-1"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 256 256" fill="currentColor">
<path
d="M213.65674,154.34326l-80-80a8,8,0,0,0-11.31348,0l-80,80A7.99981,7.99981,0,0,0,48,168H208a7.99981,7.99981,0,0,0,5.65674-13.65674Z">
</path>
</svg></button>
<ul x-show="open" x-transition.duration.500ms
class="absolute bottom-10 mb-1 py-2 text-left text-gray-500 bg-white border rounded min-w-36"
@click.outside="open = false">
<li>
<h6 class="block px-4 py-1 mb-0 text-sm text-gray-600 whitespace-nowrap">Dropdown header
</h6>
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
<li>
<hr class="mx-2 overflow-hidden border-t mt-1 mb-1">
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Separated link</a></li>
</ul>
</div>
<div x-data="{ open: false }" class="relative inline-block">
<button @click="open = ! open"
class="inline-block px-6 py-2 mr-4 text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
type="button">
<svg class="inline-block w-4 h-4 mb-1"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 256 256">
<path
d="M163.06152,40.60889a8.00159,8.00159,0,0,0-8.71826,1.73388l-80,80a8.00034,8.00034,0,0,0,0,11.31446l80,80A8.0001,8.0001,0,0,0,168,208V48A8.00065,8.00065,0,0,0,163.06152,40.60889Z">
</path>
</svg>
Dropstart button
</button>
<ul x-show="open" x-transition.duration.500ms
class="absolute md:right-52 right-16 z-10 mr-0.25 top-0 text-left py-2 text-gray-500 bg-white border rounded min-w-36"
@click.outside="open = false">
<li>
<h6 class="block px-4 py-1 mb-0 text-sm text-gray-600 whitespace-nowrap">Dropdown header
</h6>
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Something else here</a></li>
<li>
<hr class="mx-2 overflow-hidden border-t mt-1 mb-1">
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Separated link</a></li>
</ul>
</div>
</div>
<div class="mb-4">
<div x-data="{ open: false }" class="relative inline-block">
<button @click="open = ! open"
class="inline-block px-6 py-2 mt-4 mr-4 text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
type="button">End-aligned menu
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block w-5 h-5"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z"></path>
</svg></button>
<ul x-show="open"
class="absolute right-4 z-10 text-left py-2 text-gray-500 bg-white border rounded min-w-36"
@click.outside="open = false" x-transition.duration.500ms>
<li>
<h6 class="block px-4 py-1 mb-0 text-sm text-gray-600 whitespace-nowrap">Dropdown header
</h6>
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Action</a></li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Another action</a></li>
<li>
<hr class="mx-2 overflow-hidden border-t mt-1 mb-1">
</li>
<li><a class="block w-full px-4 py-1 text-gray-600 bg-transparent whitespace-nowrap"
href="#">Separated link</a></li>
</ul>
</div>
</div>
Some placeholder content in a paragraph.
And some small print.Some placeholder content in a paragraph.
And some muted small print.Some placeholder content in a paragraph.
And some muted small print.
<div class="mt-3">
<div class="flex flex-col w-full ">
<a href="#"
class="w-full px-4 py-2 text-white bg-blue-500 border-blue-400 rounded-t">The current link item</a>
<a href="#"
class="w-full px-4 py-2 border-b border-l border-r border-gray-400 hover:text-gray-700">
A second link item</a>
<a href="#"
class="w-full px-4 py-2 border-b border-l border-r border-gray-400 hover:text-gray-700">
A third link item</a>
<a href="#"
class="w-full px-4 py-2 border-b border-l border-r border-gray-400 hover:text-gray-700">
A fourth link item</a>
<a
class="w-full px-4 py-2 text-gray-700 border-b border-l border-r border-gray-400 rounded-b">
A disabled link item</a>
</div>
</div>
<div class="mt-4">
<ul class="flex flex-col w-full ">
<li class="w-full px-4 py-2 text-gray-700 border border-gray-400 rounded-t">A
disabled item</li>
<li class="w-full px-4 py-2 border-b border-l border-r border-gray-400">A
second
item</li>
<li class="w-full px-4 py-2 border-b border-l border-r border-gray-400">A third
item</li>
<li class="w-full px-4 py-2 border-b border-l border-r border-gray-400">A
fourth
item</li>
<li class="w-full px-4 py-2 border-b border-l border-r border-gray-400 rounded-b">
And a fifth one</li>
</ul>
</div>
<div class="mt-4">
<ul class="flex flex-col w-full ">
<li class="w-full px-4 py-2 border-b border-gray-400">An item</li>
<li class="w-full px-4 py-2 border-b border-gray-400">A second item</li>
<li class="w-full px-4 py-2 border-b border-gray-400">A third item</li>
<li class="w-full px-4 py-2 border-b border-gray-400">A fourth item</li>
<li class="w-full px-4 py-2 border-b border-gray-400">And a fifth one</li>
</ul>
</div>
<div class="mt-4">
<ol class="flex flex-col w-full">
<li class="flex justify-between w-full px-4 py-2 border border-gray-400">
<div class="mr-auto">
<div class="flex">
<div class="pr-2">1.</div>
<div class="font-bold">Subheading</div>
</div>
<span class="pl-5">Cras justo odio</span>
</div>
<div>
<span
class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-blue-500 rounded-full">14</span>
</div>
</li>
<li
class="flex justify-between w-full px-4 py-2 border-b border-l border-r border-gray-400">
<div class="mr-auto">
<div class="flex">
<div class="pr-2">2.</div>
<div class="font-bold">Subheading</div>
</div>
<span class="pl-5">Cras justo odio</span>
</div>
<div>
<span
class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-blue-500 rounded-full">14</span>
</div>
</li>
<li
class="flex justify-between w-full px-4 py-2 border-b border-l border-r border-gray-400">
<div class="mr-auto">
<div class="flex">
<div class="pr-2">3.</div>
<div class="font-bold">Subheading</div>
</div>
<span class="pl-5">Cras justo odio</span>
</div>
<div>
<span
class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-blue-500 rounded-full">14</span>
</div>
</li>
</ol>
</div>
<div class="mt-4">
<div class="flex flex-col w-full ">
<a href="#"
class="w-full px-4 py-2 text-gray-700 border border-gray-400 rounded-t hover:text-gray-700">A
simple default list group item</a>
<a href="#"
class="w-full px-4 py-2 text-blue-700 bg-blue-100 border border-gray-400 hover:bg-white">A
simple primary list group item</a>
<a href="#"
class="w-full px-4 py-2 text-gray-700 bg-gray-200 border border-gray-400 hover:bg-white">A
simple secondary list group item</a>
<a href="#"
class="w-full px-4 py-2 text-green-700 bg-green-100 border border-gray-400 hover:bg-white">A
simple success list group item</a>
<a href="#"
class="w-full px-4 py-2 text-red-700 bg-red-100 border border-gray-400 hover:bg-white">A
simple danger list group item</a>
<a href="#"
class="w-full px-4 py-2 text-orange-700 bg-orange-100 border border-gray-400 hover:bg-white">A
simple warning list group item</a>
<a href="#"
class="w-full px-4 py-2 border border-gray-400 bg-cyan-100 hover:b-white text-cyan-700 hover:bg-white">A
simple info list group item</a>
<a href="#"
class="w-full px-4 py-2 text-gray-600 bg-gray-100 border border-gray-400 hover:bg-white">A
simple light list group item</a>
<a href="#"
class="w-full px-4 py-2 text-black bg-gray-300 border border-gray-400 rounded-b hover:bg-white">A
simple dark list group item</a>
</div>
</div>
<div class="mt-4">
<ul class="flex flex-col w-full ">
<li
class="flex justify-between w-full px-4 py-2 border border-gray-400 rounded-t">
A list item
<div>
<span
class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-blue-500 rounded-full">14</span>
</div>
</li>
<li
class="flex justify-between w-full px-4 py-2 border-b border-l border-r border-gray-400">
A second list item
<div>
<span
class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-blue-500 rounded-full">2</span>
</div>
</li>
<li
class="flex justify-between w-full px-4 py-2 border-b border-l border-r border-gray-400 rounded-b">
A third list item
<div>
<span
class="inline-block whitespace-nowrap px-2 py-0.5 text-xs text-center font-bold leading-none text-white bg-blue-500 rounded-full">1</span>
</div>
</li>
</ul>
</div>
<div class="mt-4">
<div class="flex flex-col w-full ">
<a href="#" class="w-full px-4 py-2 bg-blue-500 border-blue-500 rounded-t">
<div class="flex justify-between w-full">
<h5 class="mb-1 text-xl font-medium">List group item heading</h5>
<small class="text-white">3 days ago</small>
</div>
<p class="mb-1 text-white">Some placeholder content in a paragraph.</p>
<small class="text-white">And some small print.</small>
</a>
<a href="#" class="w-full px-4 py-2 border-b border-l border-r border-gray-400">
<div class="flex justify-between w-full">
<h5 class="mb-1 text-xl font-medium">List group item heading</h5>
<small class="text-muted">3 days ago</small>
</div>
<p class="mb-1">Some placeholder content in a paragraph.</p>
<small class="text-muted">And some muted small print.</small>
</a>
<a href="#"
class="w-full px-4 py-2 border-b border-l border-r border-gray-400 rounded-b">
<div class="flex justify-between w-full">
<h5 class="mb-1 text-xl font-medium">List group item heading</h5>
<small class="text-muted">3 days ago</small>
</div>
<p class="mb-1">Some placeholder content in a paragraph.</p>
<small class="text-muted">And some muted small print.</small>
</a>
</div>
</div>
<div class="mt-4">
<div class="flex flex-col w-full ">
<label class="w-full px-4 py-2 border border-gray-400 rounded-t">
<input class="w-4 h-4 mr-1" type="checkbox">
First checkbox
</label>
<label class="w-full px-4 py-2 border-b border-l border-r border-gray-400">
<input class="w-4 h-4 mr-1" type="checkbox">
Second checkbox
</label>
<label class="w-full px-4 py-2 border-b border-l border-r border-gray-400">
<input class="w-4 h-4 mr-1" type="checkbox">
Third checkbox
</label>
<label class="w-full px-4 py-2 border-b border-l border-r border-gray-400">
<input class="w-4 h-4 mr-1" type="checkbox">
Fourth checkbox
</label>
<label
class="w-full px-4 py-2 border-b border-l border-r border-gray-400 rounded-b">
<input class="w-4 h-4 mr-1" type="checkbox">
Fifth checkbox
</label>
</div>
</div>
I will not close if you click outside me. Don't even try to press escape key.
...
<div class="block" data-tab-content="true" id="modalsection">
<div class="flex justify-between flex-wrap">
<button type="button"
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600"
onclick="toggleModal('modal1')">Launch demo modal</button>
<div id="modal1"
class="fixed inset-0 z-50 items-center justify-center hidden overflow-x-hidden overflow-y-auto outline-none focus:outline-none">
<div class="relative w-auto max-w-lg mx-auto my-6">
<div
class="relative flex flex-col w-full bg-white border rounded-lg shadow-lg outline-none focus:outline-none">
<div
class="flex items-center justify-between flex-shrink-0 p-4 border-b border-gray-200 border-solid rounded-t">
<h5 class="mx-0 text-xl font-medium" id="exampleModalLabel">Modal title</h5>
<button type="button"
class="inline-block px-6 py-2 m-1 ml-auto -mt-2 -mb-2 -mr-2 text-lg font-semibold text-center text-black bg-transparent rounded b-0"
onclick="toggleModal('modal1')">X</button>
</div>
<div class="relative flex-auto p-4">
...
</div>
<div
class="flex flex-wrap items-center justify-end flex-shrink-0 p-2 border-t border-gray-200 border-solid">
<button type="button"
class="inline-block px-6 py-2 m-1
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onclick="toggleModal('modal1')">Close</button>
<button type="button"
class="inline-block px-6 py-2 m-1
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md text-md m-1 hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">Save
changes</button>
</div>
</div>
</div>
</div>
<div class="fixed inset-0 z-40 hidden bg-black opacity-40" id="modal1-backdrop"></div>
<button type="button"
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600"
onclick="toggleModal('modal2')">Launch static backdrop modal</button>
<div id="modal2"
class="fixed inset-0 z-50 items-center justify-center hidden overflow-x-hidden overflow-y-auto outline-none focus:outline-none">
<div class="relative w-auto max-w-lg mx-auto my-6">
<div
class="relative flex flex-col w-full bg-white border rounded-lg shadow-lg outline-none focus:outline-none">
<div
class="flex items-center justify-between flex-shrink-0 p-4 border-b border-gray-200 border-solid rounded-t">
<h5 class="mx-0 text-xl font-medium" id="exampleModalLabel">Modal title</h5>
<button type="button"
class="inline-block px-6 py-2 m-1 ml-auto -mt-2 -mb-2 -mr-2 text-lg font-semibold text-center text-black bg-transparent rounded b-0"
onclick="toggleModal('modal2')">X</button>
</div>
<div class="relative flex-auto p-4">
<p class="mb-4">I will not close if you click outside me. Don't even try to press escape
key.
</p>
</div>
<div
class="flex flex-wrap items-center justify-end flex-shrink-0 p-2 border-t border-gray-200 border-solid">
<button type="button"
class="inline-block px-6 py-2 m-1
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onclick="toggleModal('modal2')">Close</button>
<button type="button"
class="inline-block px-6 py-2 m-1
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md text-md m-1 hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">Understood</button>
</div>
</div>
</div>
</div>
</div>
<div class="flex justify-between flex-wrap">
<div class="fixed inset-0 z-40 hidden bg-black opacity-40" id="modal2-backdrop"></div>
<button type="button"
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600"
onclick="toggleModal('modal3')">Vertically centered scrollable modal</button>
<div id="modal3"
class="fixed inset-0 z-50 items-center justify-center hidden overflow-x-hidden overflow-y-auto outline-none focus:outline-none">
<div class="relative w-auto max-w-lg mx-auto my-6 ">
<div
class="relative flex flex-col w-full overflow-hidden bg-white border rounded-lg shadow-lg outline-none max-h-96 focus:outline-none">
<div
class="flex items-center justify-between flex-shrink-0 p-4 border-b border-gray-200 border-solid rounded-t">
<h5 class="mx-0 text-xl font-medium" id="exampleModalLabel">Modal title</h5>
<button type="button"
class="inline-block px-6 py-2 m-1 ml-auto -mt-2 -mb-2 -mr-2 text-lg font-semibold text-center text-black bg-transparent rounded b-0"
onclick="toggleModal('modal3')">X</button>
</div>
<div class="relative flex-auto p-4 overflow-hidden overflow-y-auto ">
<p class="mb-4">This is some placeholder content to show the scrolling behavior for
modals.
We
use repeated line breaks to demonstrate how content can exceed minimum inner height,
thereby
showing inner scrolling. When content becomes longer than the prefedined max-height of
modal, content will be cropped and scrollable within the modal.</p>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</div>
<div
class="flex flex-wrap items-center justify-end flex-shrink-0 p-2 border-t border-gray-200 border-solid">
<button type="button"
class="inline-block px-6 py-2 m-1
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onclick="toggleModal('modal3')">Close</button>
<button type="button"
class="inline-block px-6 py-2 m-1
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md text-md m-1 hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">Save
changes</button>
</div>
</div>
</div>
</div>
<div class="fixed inset-0 z-40 hidden bg-black opacity-40" id="modal3-backdrop"></div>
<button type="button"
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600"
onclick="toggleModal('modal4')">Full screen</button>
<div id="modal4"
class="fixed inset-0 z-50 items-center justify-center hidden w-full h-full overflow-x-hidden overflow-y-auto outline-none focus:outline-none">
<div class="relative w-screen h-full">
<div
class="relative flex flex-col w-screen h-full bg-white border shadow-lg outline-none focus:outline-none">
<div
class="flex items-center justify-between flex-shrink-0 p-4 border-b border-gray-200 border-solid ">
<h5 class="mx-0 text-xl font-medium" id="exampleModalLabel">full screen model</h5>
<button type="button"
class="inline-block px-6 py-2 m-1 ml-auto -mt-2 -mb-2 -mr-2 text-lg font-semibold text-center text-black bg-transparent rounded b-0"
onclick="toggleModal('modal4')">X</button>
</div>
<div class="relative flex-auto p-4">
...
</div>
<div
class="flex flex-wrap items-center justify-end flex-shrink-0 p-2 border-t border-gray-200 border-solid">
<button type="button"
class="inline-block px-6 py-2 m-1
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onclick="toggleModal('modal4')">Close</button>
</div>
</div>
</div>
</div>
</div>
This is some placeholder content the Home tab's
associated content.
Clicking another tab will toggle the visibility of this one for the next. The tab
JavaScript swaps classes to control the content visibility and styling. You can
use it with tabs, pills, and any other .nav
-powered
navigation.
This is some placeholder content the Profile tab's
associated content. Clicking another tab will toggle the visibility of this one
for the next. The tab JavaScript swaps classes to control the content visibility and
styling. You can use it with tabs, pills, and any other .nav
-powered
navigation.
This is some placeholder content the Contact tab's
associated content. Clicking another tab will toggle the visibility of this one
for the next. The tab JavaScript swaps classes to control the content visibility and
styling. You can use it with tabs, pills, and any other .nav
-powered
navigation.
Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth.
Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse.
Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth.
<div>
<div>
<nav class="flex flex-wrap bg-white">
<a class="px-4 py-2 text-blue-600" href="#">Active</a>
<a class="px-4 py-2 text-blue-600" href="#">Link</a>
<a class="px-4 py-2 text-blue-600" href="#">Link</a>
<a class="px-4 py-2 text-gray-500 cursor-pointer" tabindex="-1">Disabled</a>
</nav>
</div>
<div class="mt-4">
<div class="flex flex-wrap" id="wrapper-for-text-blue">
<div>
<ul class="flex flex-wrap mb-0">
<li>
<a class="inline-block px-4 py-2 cursor-pointer
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 rounded "
data-tab-toggle1="text-tab-profile-blue"
onclick="changeAtiveTab(event,'wrapper-for-text-blue','blue','text-tab-profile-blue')">
Home
</a>
</li>
<li>
<a class="inline-block px-4 py-2 cursor-pointer
text-center text-blue-500 transition-all duration-500 ease-in-out bg-white rounded "
data-tab-toggle1="text-tab-settings-blue"
onclick="changeAtiveTab(event,'wrapper-for-text-blue','blue','text-tab-settings-blue')">
Profile
</a>
</li>
<li>
<a class="inline-block px-4 py-2 cursor-pointer
text-center text-blue-500 transition-all duration-500 ease-in-out bg-white rounded "
data-tab-toggle1="text-tab-options-blue"
onclick="changeAtiveTab(event,'wrapper-for-text-blue','blue','text-tab-options-blue')">
Contact
</a>
</li>
</ul>
<div class="relative flex flex-col w-full min-w-0 mb-6 break-words bg-white ">
<div class="flex-auto px-4 pt-4">
<div class="tab-content tab-space">
<div class="block" data-tab-content1="true" id="text-tab-profile-blue">
<p class="text-gray-600"><strong>This is some placeholder content the Home tab's
associated content.</strong>
Clicking another tab will toggle the visibility of this one for the next. The tab
JavaScript swaps classes to control the content visibility and styling. You can
use it
with tabs, pills, and any other <code class="text-pink-500">.nav</code>-powered
navigation.</p>
</div>
<div class="hidden" data-tab-content1="true" id="text-tab-settings-blue">
<p class="text-gray-600"><strong>This is some placeholder content the Profile tab's
associated
content.</strong> Clicking another tab will toggle the visibility of this one
for
the next. The tab JavaScript swaps classes to control the content visibility and
styling. You can use it with tabs, pills, and any other <code
class="text-pink-500">.nav</code>-powered
navigation.</p>
</div>
<div class="hidden" data-tab-content1="true" id="text-tab-options-blue">
<p class="text-gray-600"><strong>This is some placeholder content the Contact tab's
associated
content.</strong> Clicking another tab will toggle the visibility of this one
for
the next. The tab JavaScript swaps classes to control the content visibility and
styling. You can use it with tabs, pills, and any other <code
class="text-pink-500">.nav</code>-powered
navigation.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div>
<div class="flex flex-wrap" id="wrapperpill-for-text-blue">
<div>
<ul class="flex flex-wrap mb-0 list-none">
<li>
<a class="inline-block px-4 py-2 cursor-pointer
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 rounded-full "
data-tab-toggle2="text-tabpill-profile-blue"
onclick="changeAtivepillTab(event,'wrapperpill-for-text-blue','blue','text-tabpill-profile-blue')">
Home
</a>
</li>
<li>
<a class="inline-block px-4 py-2 cursor-pointer
text-center text-blue-500 transition-all duration-500 ease-in-out bg-white rounded-full "
data-tab-toggle2="text-tabpill-settings-blue"
onclick="changeAtivepillTab(event,'wrapperpill-for-text-blue','blue','text-tabpill-settings-blue')">
Profile
</a>
</li>
<li>
<a class="inline-block px-4 py-2 cursor-pointer
text-center text-blue-500 transition-all duration-500 ease-in-out bg-white rounded-full "
data-tab-toggle2="text-tabpill-options-blue"
onclick="changeAtivepillTab(event,'wrapperpill-for-text-blue','blue','text-tabpill-options-blue')">
Contact
</a>
</li>
</ul>
<div class="relative flex flex-col w-full min-w-0 break-words bg-white ">
<div class="flex-auto px-4 pt-4">
<div class="tab-content">
<div class="block" data-tab-content2="true" id="text-tabpill-profile-blue">
<p class="mb-4 text-gray-600"> Raw denim you probably haven't heard of them jean
shorts
Austin.
Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche
tempor,
williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh
dreamcatcher
synth. </p>
<p class="mb-4 text-gray-600"> Raw denim you probably haven't heard of them jean
shorts
Austin.
Nesciunt tofu stumptown aliqua, retro synth master cleanse. </p>
</div>
<div class="hidden" data-tab-content2="true" id="text-tabpill-settings-blue">
<p class="mb-4 text-gray-600"> Cosby sweater eu banh mi, qui irure terry richardson
ex
squid. Aliquip
placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel,
butcher
voluptate nisi qui. </p>
</div>
<div class="hidden" data-tab-content2="true" id="text-tabpill-options-blue">
<p class="mb-4 text-gray-600"> Raw denim you probably haven't heard of them jean
shorts
Austin.
Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche
tempor,
williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh
dreamcatcher
synth. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div>
<nav class="flex flex-wrap bg-white">
<a class="inline-block px-4 py-2
text-center text-white transition-all duration-500 ease-in-out bg-blue-500 rounded-full "
href="#">Active</a>
<a class="px-4 py-2" href="#">Link</a>
<a class="px-4 py-2" href="#">Link</a>
<a class="px-4 py-2 text-gray-500 cursor-pointer" tabindex="-1">Disabled</a>
</nav>
</div>
</div>
<div>
<nav class="bg-gray-300" x-data="{ selected: null }">
<div class="w-full px-4 sm:px-4 lg:px-4">
<div class="relative flex items-center justify-between h-16">
<div
class="absolute right-0 flex items-center px-3 py-1 text-xl border border-gray-500 rounded sm:hidden">
<!-- Mobile menu button-->
<button type="button" @click="selected == 1 ? selected = null : selected = 1"
class="inline-flex items-center justify-center text-xl text-gray-500 rounded"
aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="block w-8 h-8" xmlns="http://www.w3.org/2000/svg" fill="black"
viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16" />
</svg>
<svg class="hidden w-6 h-6" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="flex items-center justify-start flex-1 md:justify-center sm:items-stretch">
<a class="flex items-center pt-1.5 pb-1.5 mr-4 text-xl whitespace-nowrap" href="#">
Logo
</a>
<div class="hidden md:flex md:flex-grow">
<ul class="flex items-center mb-2 mr-auto lg:mb-0">
<li>
<a class="block px-2 py-2 text-black" href="#">Home</a>
</li>
<li>
<a class="block px-2 py-2 text-gray-600" href="#">Link</a>
</li>
<li class="relative inline-block text-left">
<div class="relative mr-4" x-data="{ open: false }">
<a class="dropdown-toggle cursor-pointer flex items-center justify-center w-full pl-4 py-2 text-gray-600"
@click="open = ! open">
Dropdown
<!-- Heroicon name: solid/chevron-down -->
<svg x-bind:style="open ? 'transform: rotate(180deg)' : ''" viewBox="0 0 20 20"
fill="currentColor" class="w-5 h-5 ml-2 -mr-1"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd" />
</svg>
</a>
<div
class="absolute z-50 py-2 text-left text-gray-600 bg-white border rounded shadow-md "
@click.outside="open = false" x-show="open" x-transition.duration.500>
<a class="block w-full px-4 py-1 hover:text-blue-500
whitespace-nowrap " href="javascript:void(0);">Action</a>
<a class="block w-full px-4 py-1 hover:text-blue-500
whitespace-nowrap " href="javascript:void(0);">Another action</a>
<hr class="mx-2 overflow-hidden border-gray-400">
<a class="block w-full px-4 hover:text-blue-500 py-1
whitespace-nowrap " href="javascript:void(0);">Something else here</a>
</div>
</div>
</li>
<li>
<a class="block py-2 text-gray-500 disabled cursor-pointer" tabindex="-1">Disabled</a>
</li>
<form class="flex px-2 py-2">
<input class="block w-full px-4 py-2 mr-2
placeholder-gray-500 rounded" type="search" placeholder="Search"
aria-label="Search">
<button
class="inline-block px-6 py-2
text-center text-gray-900 transition-all duration-500 ease-in-out border border-gray-900 rounded shadow-md hover:shadow-xl hover:bg-gray-900 hover:text-white"
type="submit">Search</button>
</form>
</ul>
</div>
</div>
</div>
</div>
<div class="relative overflow-hidden transition-all duration-700 max-h-0" style=""
x-ref="container1"
x-bind:style="selected == 1 ? 'max-height: ' + $refs.container1.scrollHeight + 'px' : ''">
<ul class="mb-2 px-4">
<li class="mb-3">
<a href="#">Home</a>
</li>
<li class="mb-3">
<a href="#">Link</a>
</li>
<li class="mb-3">
<div class="flex items-center" x-data="{ open: false }">
<div x-data="{ open: false }">
<span class="dark:text-blue-300 flex items-center h5 cursor-pointer text-gray-600 "
@click="open = ! open">dropdown
<svg xmlns="http://www.w3.org/2000/svg"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
class="w-5 h-5" viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z" />
</svg>
</span>
<div
class="absolute z-50 py-2 left-20 text-left text-gray-600 bg-white border rounded shadow-md dark:bg-zinc-900 dark:border-zinc-900"
@click.outside="open = false" x-show="open" x-transition.duration.500ms>
<a class="block px-4 py-1 whitespace-nowrap hover:text-blue-500 focus:text-white focus:bg-blue-500 "
href="javascript:void(0);">Action</a>
<a class="block px-4 py-1 whitespace-nowrap hover:text-blue-500 focus:text-white focus:bg-blue-500 "
href="javascript:void(0);">Another action</a>
<hr class="m-0">
<a class="block px-4 py-1 whitespace-nowrap hover:text-blue-500 focus:text-white focus:bg-blue-500 "
href="javascript:void(0);">Something else here</a>
</div>
</div>
</div>
</li>
<li class="mb-3" disabled>
<a>Disabled</a>
</li>
<form class="flex py-2">
<input class="block w-full px-4 py-2 mr-2
placeholder-gray-500 rounded" type="search" placeholder="Search" aria-label="Search">
<button
class="inline-block px-6 py-2
text-center text-gray-900 transition-all duration-500 ease-in-out border border-gray-900 rounded shadow-md hover:shadow-xl hover:bg-gray-900 hover:text-white"
type="submit">Search</button>
</form>
</ul>
</div>
</nav>
</div>
<div class="mt-12">
<nav class="bg-blue-500 rounded" x-data="{ selected: null }">
<div class="w-full px-4 sm:px-4 lg:px-4">
<div class="relative flex items-center justify-between h-16">
<div
class="absolute right-0 flex items-center px-3 py-1 text-xl border border-gray-500 rounded sm:hidden">
<!-- Mobile menu button-->
<button type="button" @click="selected == 1 ? selected = null : selected = 1"
class="inline-flex items-center justify-center text-xl text-gray-500 rounded"
aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="block w-8 h-8" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16" />
</svg>
<svg class="hidden w-6 h-6" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="flex items-center justify-start flex-1 md:justify-center sm:items-stretch">
<a class="pt-1.5 pb-1.5 mr-4 text-xl text-white whitespace-nowrap" href="#">
Logo
</a>
<div class="hidden md:flex md:flex-grow">
<ul class="flex mb-2 ml-auto lg:mb-0">
<li>
<a class="block px-4 py-2 text-white" href="#">Home</a>
</li>
<li>
<a class="block px-4 py-2 text-gray-400" href="#">Link</a>
</li>
<li class="relative inline-block text-left">
<div class="relative mr-4" x-data="{ open: false }">
<a class="dropdown-toggle cursor-pointer flex items-center justify-center w-full pl-4 py-2 text-gray-400"
@click="open = ! open">
Dropdown
<!-- Heroicon name: solid/chevron-down -->
<svg x-bind:style="open ? 'transform: rotate(180deg)' : ''" viewBox="0 0 20 20"
fill="currentColor" class="w-5 h-5 ml-2 -mr-1"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd" />
</svg>
</a>
<div
class="absolute z-50 py-2 text-left text-gray-600 bg-white border rounded shadow-md "
@click.outside="open = false" x-show="open" x-transition.duration.500>
<a class="block hover:text-blue-500 w-full px-4 py-1
whitespace-nowrap " href="javascript:void(0);">Action</a>
<a class="block hover:text-blue-500 w-full px-4 py-1
whitespace-nowrap " href="javascript:void(0);">Another action</a>
<hr class="mx-2 overflow-hidden border-gray-400">
<a class="block hover:text-blue-500 w-full px-4 py-1
whitespace-nowrap " href="javascript:void(0);">Something else here</a>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="relative overflow-hidden transition-all duration-700 max-h-0" style=""
x-ref="container1"
x-bind:style="selected == 1 ? 'max-height: ' + $refs.container1.scrollHeight + 'px' : ''">
<ul class="mb-2 px-4 p-4">
<li class="mb-3 text-white">
<a href="#">Home</a>
</li>
<li class="mb-3 text-[#ffffff8c]">
<a href="#">Link</a>
</li>
<li class="mb-3 text-[#ffffff8c]">
<div class="flex items-center" x-data="{ open: false }">
<div x-data="{ open: false }">
<span class="dark:text-blue-300 flex items-center h5 cursor-pointer"
@click="open = ! open">dropdown
<svg xmlns="http://www.w3.org/2000/svg"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
class="w-5 h-5" viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z" />
</svg>
</span>
<div
class="absolute z-50 py-2 right-0 bottom-5 text-left text-gray-600 bg-white border rounded shadow-md dark:bg-zinc-900 dark:border-zinc-900"
@click.outside="open = false" x-show="open" x-transition.duration.500ms>
<a class="block px-4 py-1 whitespace-nowrap hover:text-blue-500 focus:text-white focus:bg-blue-500 "
href="javascript:void(0);">Action</a>
<a class="block px-4 py-1 whitespace-nowrap hover:text-blue-500 focus:text-white focus:bg-blue-500 "
href="javascript:void(0);">Another action</a>
<hr class="m-0">
<a class="block px-4 py-1 whitespace-nowrap hover:text-blue-500 focus:text-white focus:bg-blue-500 "
href="javascript:void(0);">Something else here</a>
</div>
</div>
</div>
</li>
</ul>
</div>
</nav>
</div>
<div class="mt-12">
<nav class="bg-red-500 rounded" x-data="{ selected: null }">
<div class="w-full px-4 sm:px-3 lg:px-4">
<div class="relative flex items-center justify-between h-16">
<div
class="absolute right-0 flex px-3 py-1 text-xl border border-gray-500 rounded justify-items-center sm:hidden">
<!-- Mobile menu button-->
<button type="button" @click="selected == 1 ? selected = null : selected = 1"
class="inline-flex items-center justify-center text-xl text-gray-500 rounded"
aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="block w-8 h-8" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16" />
</svg>
<svg class="hidden w-6 h-6" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="flex items-center justify-start flex-1 md:justify-center sm:items-stretch">
<a class="pt-1.5 pb-1.5 mr-4 text-xl text-white whitespace-nowrap" href="#">
Logo
</a>
<div class="hidden md:flex md:flex-grow">
<ul class="flex mb-2 ml-auto lg:mb-0">
<li>
<a class="block px-4 py-2 text-gray-400" aria-current="page" href="#">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M14.2124 7.76241C14.2124 10.4062 12.0489 12.5248 9.34933 12.5248C6.6507 12.5248 4.48631 10.4062 4.48631 7.76241C4.48631 5.11865 6.6507 3 9.34933 3C12.0489 3 14.2124 5.11865 14.2124 7.76241ZM2 17.9174C2 15.47 5.38553 14.8577 9.34933 14.8577C13.3347 14.8577 16.6987 15.4911 16.6987 17.9404C16.6987 20.3877 13.3131 21 9.34933 21C5.364 21 2 20.3666 2 17.9174ZM16.1734 7.84875C16.1734 9.19506 15.7605 10.4513 15.0364 11.4948C14.9611 11.6021 15.0276 11.7468 15.1587 11.7698C15.3407 11.7995 15.5276 11.8177 15.7184 11.8216C17.6167 11.8704 19.3202 10.6736 19.7908 8.87118C20.4885 6.19676 18.4415 3.79543 15.8339 3.79543C15.5511 3.79543 15.2801 3.82418 15.0159 3.87688C14.9797 3.88454 14.9405 3.90179 14.921 3.93246C14.8955 3.97174 14.9141 4.02253 14.9396 4.05607C15.7233 5.13216 16.1734 6.44206 16.1734 7.84875ZM19.3173 13.7023C20.5932 13.9466 21.4317 14.444 21.7791 15.1694C22.0736 15.7635 22.0736 16.4534 21.7791 17.0475C21.2478 18.1705 19.5335 18.5318 18.8672 18.6247C18.7292 18.6439 18.6186 18.5289 18.6333 18.3928C18.9738 15.2805 16.2664 13.8048 15.5658 13.4656C15.5364 13.4493 15.5296 13.4263 15.5325 13.411C15.5345 13.4014 15.5472 13.3861 15.5697 13.3832C17.0854 13.3545 18.7155 13.5586 19.3173 13.7023Z"
fill="#fff"></path>
</svg>
</a>
</li>
<li>
<a class="block px-4 py-2 text-gray-400" href="#">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M17.1801 4.41C17.1801 3.08 18.2601 2 19.5901 2C20.9201 2 22.0001 3.08 22.0001 4.41C22.0001 5.74 20.9201 6.82 19.5901 6.82C18.2601 6.82 17.1801 5.74 17.1801 4.41ZM13.33 14.7593L16.22 11.0303L16.18 11.0503C16.34 10.8303 16.37 10.5503 16.26 10.3003C16.151 10.0503 15.91 9.8803 15.651 9.8603C15.38 9.8303 15.111 9.9503 14.95 10.1703L12.531 13.3003L9.76 11.1203C9.59 10.9903 9.39 10.9393 9.19 10.9603C8.991 10.9903 8.811 11.0993 8.69 11.2593L5.731 15.1103L5.67 15.2003C5.5 15.5193 5.58 15.9293 5.88 16.1503C6.02 16.2403 6.17 16.3003 6.34 16.3003C6.571 16.3103 6.79 16.1893 6.93 16.0003L9.44 12.7693L12.29 14.9103L12.38 14.9693C12.7 15.1393 13.1 15.0603 13.33 14.7593ZM15.45 3.7803C15.41 4.0303 15.39 4.2803 15.39 4.5303C15.39 6.7803 17.21 8.5993 19.45 8.5993C19.7 8.5993 19.94 8.5703 20.19 8.5303V16.5993C20.19 19.9903 18.19 22.0003 14.79 22.0003H7.401C4 22.0003 2 19.9903 2 16.5993V9.2003C2 5.8003 4 3.7803 7.401 3.7803H15.45Z"
fill="#fff"></path>
</svg>
</a>
</li>
<li class="relative inline-block text-left ">
<div class="relative mr-4" x-data="{ open: false }">
<a class="flex items-center cursor-pointer w-full pl-4 py-2 text-gray-400 justify-items-center"
@click="open = ! open">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M6.11304 4.5H11.9051C14.3271 4.5 16.0181 6.16904 16.0181 8.56091V15.4391C16.0181 17.831 14.3271 19.5 11.9051 19.5H6.11304C3.69102 19.5 2 17.831 2 15.4391V8.56091C2 6.16904 3.69102 4.5 6.11304 4.5ZM19.958 6.87898C20.397 6.65563 20.912 6.67898 21.331 6.94294C21.75 7.20589 22 7.66274 22 8.16223V15.8384C22 16.3389 21.75 16.7947 21.331 17.0577C21.102 17.2008 20.846 17.2739 20.588 17.2739C20.373 17.2739 20.158 17.2231 19.957 17.1206L18.476 16.3734C17.928 16.0952 17.588 15.5369 17.588 14.9165V9.08305C17.588 8.46173 17.928 7.90335 18.476 7.62721L19.958 6.87898Z"
fill="#fff"></path>
</svg>
<!-- Heroicon name: solid/chevron-down -->
<svg x-bind:style="open ? 'transform: rotate(180deg)' : ''" viewBox="0 0 20 20"
class="w-5 h-5 ml-2 -mr-1" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd" />
</svg>
</a>
<div
class="absolute z-50 py-2 text-left text-gray-600 bg-white border rounded shadow-md "
@click.outside="open = false" x-show="open" x-transition.duration.500>
<a class="block hover:text-blue-500 w-full px-4 py-1
whitespace-nowrap " href="javascript:void(0);">Action</a>
<a class="block hover:text-blue-500 w-full px-4 py-1
whitespace-nowrap " href="javascript:void(0);">Another action</a>
<hr class="mx-2 overflow-hidden border-gray-400">
<a class="block hover:text-blue-500 w-full px-4 py-1
whitespace-nowrap " href="javascript:void(0);">Something else here</a>
</div>
</div>
<div class="absolute left-0 block mt-1 origin-top-right top-full">
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="relative overflow-hidden transition-all duration-700 max-h-0" style=""
x-ref="container1"
x-bind:style="selected == 1 ? 'max-height: ' + $refs.container1.scrollHeight + 'px' : ''">
<ul class="mb-2 text-white px-4 p-4">
<li class="mb-3">
<a href="#"><svg width="32" height="32" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M14.2124 7.76241C14.2124 10.4062 12.0489 12.5248 9.34933 12.5248C6.6507 12.5248 4.48631 10.4062 4.48631 7.76241C4.48631 5.11865 6.6507 3 9.34933 3C12.0489 3 14.2124 5.11865 14.2124 7.76241ZM2 17.9174C2 15.47 5.38553 14.8577 9.34933 14.8577C13.3347 14.8577 16.6987 15.4911 16.6987 17.9404C16.6987 20.3877 13.3131 21 9.34933 21C5.364 21 2 20.3666 2 17.9174ZM16.1734 7.84875C16.1734 9.19506 15.7605 10.4513 15.0364 11.4948C14.9611 11.6021 15.0276 11.7468 15.1587 11.7698C15.3407 11.7995 15.5276 11.8177 15.7184 11.8216C17.6167 11.8704 19.3202 10.6736 19.7908 8.87118C20.4885 6.19676 18.4415 3.79543 15.8339 3.79543C15.5511 3.79543 15.2801 3.82418 15.0159 3.87688C14.9797 3.88454 14.9405 3.90179 14.921 3.93246C14.8955 3.97174 14.9141 4.02253 14.9396 4.05607C15.7233 5.13216 16.1734 6.44206 16.1734 7.84875ZM19.3173 13.7023C20.5932 13.9466 21.4317 14.444 21.7791 15.1694C22.0736 15.7635 22.0736 16.4534 21.7791 17.0475C21.2478 18.1705 19.5335 18.5318 18.8672 18.6247C18.7292 18.6439 18.6186 18.5289 18.6333 18.3928C18.9738 15.2805 16.2664 13.8048 15.5658 13.4656C15.5364 13.4493 15.5296 13.4263 15.5325 13.411C15.5345 13.4014 15.5472 13.3861 15.5697 13.3832C17.0854 13.3545 18.7155 13.5586 19.3173 13.7023Z"
fill="#fff"></path>
</svg></a>
</li>
<li class="mb-3">
<a href="#"><svg width="32" height="32" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M17.1801 4.41C17.1801 3.08 18.2601 2 19.5901 2C20.9201 2 22.0001 3.08 22.0001 4.41C22.0001 5.74 20.9201 6.82 19.5901 6.82C18.2601 6.82 17.1801 5.74 17.1801 4.41ZM13.33 14.7593L16.22 11.0303L16.18 11.0503C16.34 10.8303 16.37 10.5503 16.26 10.3003C16.151 10.0503 15.91 9.8803 15.651 9.8603C15.38 9.8303 15.111 9.9503 14.95 10.1703L12.531 13.3003L9.76 11.1203C9.59 10.9903 9.39 10.9393 9.19 10.9603C8.991 10.9903 8.811 11.0993 8.69 11.2593L5.731 15.1103L5.67 15.2003C5.5 15.5193 5.58 15.9293 5.88 16.1503C6.02 16.2403 6.17 16.3003 6.34 16.3003C6.571 16.3103 6.79 16.1893 6.93 16.0003L9.44 12.7693L12.29 14.9103L12.38 14.9693C12.7 15.1393 13.1 15.0603 13.33 14.7593ZM15.45 3.7803C15.41 4.0303 15.39 4.2803 15.39 4.5303C15.39 6.7803 17.21 8.5993 19.45 8.5993C19.7 8.5993 19.94 8.5703 20.19 8.5303V16.5993C20.19 19.9903 18.19 22.0003 14.79 22.0003H7.401C4 22.0003 2 19.9903 2 16.5993V9.2003C2 5.8003 4 3.7803 7.401 3.7803H15.45Z"
fill="#fff"></path>
</svg></a>
</li>
<li class="mb-3">
<div class="flex items-center" x-data="{ open: false }">
<div x-data="{ open: false }">
<span class="dark:text-blue-300 flex items-center h5 cursor-pointertext-white"
@click="open = ! open"><svg width="32" height="32" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M6.11304 4.5H11.9051C14.3271 4.5 16.0181 6.16904 16.0181 8.56091V15.4391C16.0181 17.831 14.3271 19.5 11.9051 19.5H6.11304C3.69102 19.5 2 17.831 2 15.4391V8.56091C2 6.16904 3.69102 4.5 6.11304 4.5ZM19.958 6.87898C20.397 6.65563 20.912 6.67898 21.331 6.94294C21.75 7.20589 22 7.66274 22 8.16223V15.8384C22 16.3389 21.75 16.7947 21.331 17.0577C21.102 17.2008 20.846 17.2739 20.588 17.2739C20.373 17.2739 20.158 17.2231 19.957 17.1206L18.476 16.3734C17.928 16.0952 17.588 15.5369 17.588 14.9165V9.08305C17.588 8.46173 17.928 7.90335 18.476 7.62721L19.958 6.87898Z"
fill="#fff"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg"
x-bind:style="open ? 'transform: rotate(180deg);transition-duration: 500ms' : 'transform: -rotate(180deg);transition-duration: 500ms'"
class="w-5 h-5" viewBox="0 0 512 512" fill="currentColor">
<path d="M128 192l128 128 128-128z" />
</svg>
</span>
<div
class="absolute z-50 py-2 left-20 bottom-10 text-left text-gray-600 bg-white border rounded shadow-md dark:bg-zinc-900 dark:border-zinc-900"
@click.outside="open = false" x-show="open" x-transition.duration.500>
<a class="block px-4 py-1 whitespace-nowrap hover:text-blue-500 focus:text-white focus:bg-blue-500 "
href="javascript:void(0);">This Week</a>
<a class="block px-4 py-1 whitespace-nowrap hover:text-blue-500 focus:text-white focus:bg-blue-500 "
href="javascript:void(0);">This Month</a>
<a class="block px-4 py-1 whitespace-nowrap hover:text-blue-500 focus:text-white focus:bg-blue-500 "
href="javascript:void(0);">This Year</a>
</div>
</div>
</div>
</li>
</ul>
</div>
</nav>
</div>
<div class="w-4/5">
<div class="flex flex-wrap">
<div x-data="{ open: false }">
<button type="button" x-on:click="scrolldisable()" @click="open = !open"
class=" relative whitespace-nowrap inline-block px-6 py-2 mb-4 mr-4 text-center text-white duration-700 bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">
Toggle top Offcanvas
</button>
<div class="fixed w-full h-full top-0 z-50" x-show="open" style="display: none;">
<span x-on:click="scrollenable()" class="fixed bg-gray-900 bg-opacity-70 w-full h-full inset-x-0 top-0"></span>
<!-- Mobile navbar -->
<nav class="top-0 w-full left-0 fixed py-4 bg-white dark:bg-gray-800 h-64 overflow-auto z-40"
x-show="open" @click.away="open=false" x-description="Mobile menu" role="menu"
x-transition:enter="transform transition-transform duration-700"
x-transition:enter-start="-translate-y-full" x-transition:enter-end="-translate-y-0"
x-transition:leave="transform transition-transform duration-700"
x-transition:leave-start="-translate-y-0" x-transition:leave-end="-translate-y-full">
<div class="p-3">
<h3 class="text-2xl font-semibold text-gray-700">Offcanvas top</h3>
<a x-on:click="scrollenable()" class="absolute mr-2 top-1 right-5 text-4xl cursor-pointer text-black dark:text-white"
@click="open = !open">×</a>
</div>
<p class="p-3 text-gray-500">....</p>
</nav>
</div><!-- End Mobile menu -->
</div>
<div x-data="{ open: false }">
<button type="button" x-on:click="scrolldisable()" @click="open = !open"
class=" relative whitespace-nowrap inline-block px-6 py-2 mb-4 mr-4 text-center text-white duration-700 bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">
Toggle right Offcanvas
</button>
<div class="fixed w-full h-full right-0 z-50" x-show="open" style="display: none;">
<span x-on:click="scrollenable()" class="fixed bg-gray-900 bg-opacity-70 w-full h-full inset-x-0 top-0"
x-transition:enter="transform transition-transform duration-700"
x-transition:enter-start="translate-x-full" x-transition:enter-end="translate-x-0"
x-transition:leave="transform transition-transform duration-700"
x-transition:leave-start="translate-x-0" x-transition:leave-end="translate-x-full"></span>
<!-- Mobile navbar -->
<nav class="right-0 md:w-96 w-full fixed top-0 py-4 bg-white dark:bg-gray-800 h-full overflow-auto z-40"
x-show="open" @click.away="open=false" x-description="Mobile menu" role="menu"
x-transition:enter="transform transition-transform duration-700"
x-transition:enter-start="translate-x-full" x-transition:enter-end="translate-x-0"
x-transition:leave="transform transition-transform duration-700"
x-transition:leave-start="translate-x-0" x-transition:leave-end="translate-x-full">
<div class="p-3">
<h3 class="text-2xl font-semibold text-gray-700">Offcanvas right</h3>
<a x-on:click="scrollenable()" class="absolute mr-2 top-1 right-5 text-4xl text-black cursor-pointer dark:text-white"
@click="open = !open">×</a>
</div>
<p class="p-3 text-gray-500">....</p>
</nav>
</div><!-- End Mobile menu -->
</div>
</div>
<div class="flex flex-wrap">
<div x-data="{ open: false }">
<button type="button" x-on:click="scrolldisable()" @click="open = !open"
class=" relative whitespace-nowrap inline-block px-6 py-2 mb-4 mr-4 text-center text-white duration-700 bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">
Toggle bottom Offcanvas
</button>
<div class="fixed w-full h-full botttom-0 z-50" x-show="open" style="display: none;">
<span x-on:click="scrollenable()" class="fixed bg-gray-900 bg-opacity-70 w-full h-full inset-x-0 top-0"></span>
<!-- Mobile navbar -->
<nav
class="bottom-0 w-full fixed right-0 py-4 bg-white dark:bg-gray-800 h-64 overflow-auto z-40"
x-show="open" @click.away="open=false" x-description="Mobile menu" role="menu"
x-transition:enter="transform transition-transform duration-700"
x-transition:enter-start="translate-y-full" x-transition:enter-end="translate-y-0"
x-transition:leave="transform transition-transform duration-700"
x-transition:leave-start="translate-y-0" x-transition:leave-end="translate-y-full">
<div class="p-3">
<h3 class="text-2xl font-semibold text-gray-700">Offcanvas bottom</h3>
<a x-on:click="scrollenable()" class="absolute mr-2 cursor-pointer top-1 right-5 text-4xl text-black dark:text-white"
@click="open = !open">×</a>
</div>
<p class="p-3 text-gray-500">....</p>
</nav>
</div><!-- End Mobile menu -->
</div>
<div x-data="{ open: false }">
<button type="button" x-on:click="scrolldisable()" @click="open = !open"
class=" relative whitespace-nowrap inline-block px-6 py-2 mb-4 mr-4 text-center text-white duration-700 bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">
Toggle Left Offcanvas
</button>
<div class="fixed w-full h-full left-0 z-50" x-show="open" style="display: none;">
<span x-on:click="scrollenable()" class="fixed bg-gray-900 bg-opacity-70 w-full h-full inset-x-0 top-0"></span>
<!-- Mobile navbar -->
<nav
class="left-0 md:w-96 w-full fixed top-0 py-4 bg-white backdrop-blur-sm dark:bg-gray-800 h-full overflow-y-hidden z-40"
x-show="open" @click.away="open=false"
x-transition:enter="transform transition-transform duration-700"
x-transition:enter-start="-translate-x-full" x-transition:enter-end="-translate-x-0"
x-transition:leave="transform transition-transform duration-700"
x-transition:leave-start="-translate-x-0" x-transition:leave-end="-translate-x-full">
<div class="p-3">
<h3 class="text-2xl font-semibold text-gray-700">Offcanvas left</h3>
<a x-on:click="scrollenable()" class="absolute mr-2 top-1 right-5 cursor-pointer text-4xl text-black dark:text-white"
@click="open = !open">×</a>
</div>
<p class="p-3 text-gray-500">....</p>
</nav>
</div><!-- End Mobile menu -->
</div>
</div>
<div x-data="{ open: false }">
<button type="button" @click="open = !open"
class=" relative whitespace-nowrap inline-block px-6 py-2 mb-4 mr-4 text-center text-white duration-700 bg-blue-500 border border-blue-500 rounded shadow-md hover:shadow-xl hover:bg-blue-600 focus:bg-blue-600">
Toggle Scroll Offcanvas
</button>
<div class="fixed w-full h-full left-0 z-50" x-show="open" style="display: none;">
<span x-on:click="scrollenable()" class="fixed bg-gray-900 bg-opacity-70 w-full h-full inset-x-0 top-0"></span>
<!-- Mobile navbar -->
<nav
class="left-0 md:w-96 w-full fixed top-0 py-4 bg-white backdrop-blur-sm dark:bg-gray-800 h-full overflow-y-hidden z-40"
x-show="open" @click.away="open=false"
x-transition:enter="transform transition-transform duration-700"
x-transition:enter-start="-translate-x-full" x-transition:enter-end="-translate-x-0"
x-transition:leave="transform transition-transform duration-700"
x-transition:leave-start="-translate-x-0" x-transition:leave-end="-translate-x-full">
<div class="p-3">
<h3 class="text-2xl font-semibold text-gray-700">Offcanvas Scroll</h3>
<a class="absolute mr-2 top-1 right-5 cursor-pointer text-4xl text-black dark:text-white"
@click="open = !open">×</a>
</div>
<p class="p-3 text-gray-500">....</p>
</nav>
</div><!-- End Mobile menu -->
</div>
</div>
<div class="block" data-tab-content="true" id="paginationsection">
<nav class="relative flex">
<a href="#"
class="relative block px-3 py-0.5 text-sm rounded-l text-blue-500 bg-white border-l border-t border-b border-gray-300 hover:bg-gray-200">
1
</a>
<a href="#"
class="relative block px-3 py-0.5 text-sm text-white bg-blue-500 border-l border-t border-b border-blue-600 ">
2
</a>
<a href="#"
class="relative block px-3 py-0.5 text-sm rounded-r text-blue-500 bg-white border-r border-t border-b border-gray-300 hover:bg-gray-200 ">
3
</a>
</nav>
<nav class="relative flex mt-3">
<a href="#"
class="relative block px-4 py-1 text-blue-500 bg-white border-t border-b border-l border-gray-300 rounded-l-lg hover:bg-gray-200">
<span aria-hidden="true">«</span>
</a>
<a href="#"
class="relative block px-4 py-1 text-blue-500 bg-white border-t border-b border-l border-gray-300 hover:bg-gray-200">
1
</a>
<a href="#"
class="relative block px-4 py-1 text-blue-500 bg-white border-t border-b border-l border-gray-300 hover:bg-gray-200 ">
2
</a>
<a href="#"
class="relative block px-4 py-1 text-blue-500 bg-white border border-t border-l border-gray-300 hover:bg-gray-200 ">
3
</a>
<a href="#"
class="relative block px-4 py-1 text-blue-500 bg-white border-t border-b border-r border-gray-300 rounded-r-lg hover:bg-gray-200 ">
<span aria-hidden="true">»</span>
</a>
</nav>
<nav class="relative inline-flex flex-wrap mt-3">
<a href="#"
class="relative block px-6 py-2 text-xl text-gray-600 border-t border-b border-l border-gray-300 rounded-l-xl"
disabled="">
<span>Previous</span>
</a>
<a href="#"
class="relative block px-6 py-2 text-xl text-blue-500 bg-white border border-gray-300 hover:bg-gray-200">
1
</a>
<a href="#" class="relative block px-6 py-2 text-xl text-white bg-blue-500 border border-blue-600">
2
</a>
<a href="#"
class="relative block px-6 py-2 text-xl text-blue-500 bg-gray-300 border border-gray-300 hover:bg-gray-200 ">
3
</a>
<a href="#"
class="relative block px-6 py-2 text-xl text-blue-500 bg-white border-t border-b border-r border-gray-300 rounded-r-xl hover:bg-gray-200 ">
<span>Next</span>
</a>
</nav>
</div>
<div class="block" data-tab-content="true" id="popoverssection">
<button type="button"
class="relative inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-red-500 border border-red-500 rounded shadow-md hover:shadow-xl hover:bg-red-600 focus:bg-red-600"
onclick="togglepopover(event,'right','tooltip000')">Click to toggle popover</button>
<div id="tooltip000" class="z-10 hidden text-sm
bg-white border rounded w-72">
<h3 class=" px-4 py-2 mb-0 bg-gray-300 border-b">Popover title</h3>
<div class="p-4 text-gray-500">And here's some amazing content. It's very engaging. Right?
</div>
<span
class="absolute border-l border-b top-14 -left-2 w-3 h-3 bg-white transform rotate-45 -mt-1 mr-3"></span>
</div>
<div class="mt-4">
<button type="button"
class="relative inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onclick="togglepopover(event,'top','tooltip001')">Popover on top</button>
<div id="tooltip001" class="hidden text-sm
bg-white border rounded w-72">
<div class="p-4 text-gray-500">Vivamus sagittis lacus vel augue laoreet rutrum faucibus.</div>
<span
class="absolute border-r border-b -bottom-2 right-32 w-3 h-3 bg-white transform rotate-45"></span>
</div>
<button type="button"
class="relative inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onclick="togglepopover(event,'right','tooltip002')">Popover on end</button>
<div id="tooltip002" class="z-10 hidden text-sm
bg-white border rounded w-72 ">
<div class="p-4 text-gray-500">Vivamus sagittis lacus vel augue laoreet rutrum faucibus.</div>
<span
class="absolute border-l border-b top-8 -left-2 w-3 h-3 bg-white transform rotate-45 -mt-1 mr-3"></span>
</div>
<button type="button"
class="relative inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onclick="togglepopover(event,'bottom','tooltip003')">Popover on bottom</button>
<div id="tooltip003" class="hidden text-sm
bg-white border rounded w-72">
<div class="p-4 text-gray-500">Vivamus sagittis lacus vel augue laoreet rutrum faucibus.</div>
<span
class="absolute border-l border-t top-0 right-32 w-3 h-3 bg-white transform rotate-45 -mt-2 mr-3"></span>
</div>
<button type="button"
class=" relative inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onclick="togglepopover(event,'left','tooltip004')">Popover on start</button>
<div id="tooltip004" class="hidden text-sm
bg-white border rounded w-72">
<div class="p-4 text-gray-500">Vivamus sagittis lacus vel augue laoreet rutrum faucibus.</div>
<span
class="absolute border-r border-t top-8 -right-1 w-3 h-3 bg-white transform rotate-45 -mr-1"></span>
</div>
</div>
</div>
<div class="block" data-tab-content="true" id="progresssection">
<div>
<div class="flex w-full h-4 align-middle bg-gray-200 rounded-full shadow-inner">
<div
class="w-0/3 h-4 py-1 text-xs leading-none text-center justify-center flex items-center text-white bg-blue-500 rounded-l-full">
0%
</div>
</div>
<div class="flex w-full h-4 mt-4 align-middle bg-gray-200 rounded-full shadow-inner">
<div
class="w-1/4 h-4 py-1 text-xs leading-none text-center justify-center flex items-center text-white bg-green-500 rounded-l-full">
25%</div>
</div>
<div class="flex w-full h-4 mt-4 align-middle bg-gray-200 rounded-full shadow-inner">
<div
class="w-2/4 h-4 py-1 text-xs leading-none text-center justify-center flex items-center text-white rounded-l-full bg-cyan-500">
50%</div>
</div>
<div class="flex w-full h-4 mt-4 align-middle bg-gray-200 rounded-full shadow-inner">
<div
class="w-3/4 h-4 py-1 text-xs leading-none text-center flex items-center justify-center text-white bg-orange-500 rounded-l-full">
75%</div>
</div>
<div class="flex w-full h-4 mt-4 align-middle bg-gray-200 rounded-full shadow-inner">
<div
class="w-full h-4 py-1 text-xs leading-none flex items-center justify-center text-center text-white bg-red-500 rounded-full">
100%</div>
</div>
<div class="block mt-4 ">
<div class="flex justify-end">
<div><span class="text-gray-500">40%</span></div>
</div>
</div>
<div class="flex w-full align-middle bg-gray-200 rounded-full shadow-inner h-10px">
<div
class="w-2/5 py-1 text-xs leading-none text-center text-white bg-red-500 rounded-l-full h-10px">
</div>
</div>
<div class="block mt-4 ">
<div class="flex justify-end">
<div><span class="text-gray-500">40%</span></div>
</div>
</div>
<div class="flex w-full align-middle bg-gray-200 rounded-full shadow-inner h-10px">
<div
class="w-2/5 py-1 text-xs leading-none text-center text-white bg-blue-500 rounded-l-full h-10px">
</div>
</div>
<div class="block mt-4 ">
<div class="flex justify-end">
<div><span class="text-gray-500">40%</span></div>
</div>
</div>
<div class="flex w-full align-middle bg-gray-200 rounded-full shadow-inner h-10px">
<div
class="w-2/5 py-1 text-xs leading-none text-center text-white bg-green-500 rounded-l-full h-10px">
</div>
</div>
<div class="mt-4">
<div class="flex w-full h-4 align-middle bg-gray-200 rounded-full shadow-inner">
<div
class="w-1/5 h-4 py-1 text-xs leading-none text-center text-white bg-blue-500 rounded-l-full">
</div>
<div class="w-1/3 h-4 py-1 text-xs leading-none text-center text-white bg-green-500"></div>
</div>
</div>
</div>
</div>
First heading
This is some placeholder content for the scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.This is some placeholder content for the scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.
This is some placeholder content for the scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.This is some placeholder content for the scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.
This is some placeholder content for the scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.
This is some placeholder content for the scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.
This is some placeholder content for the scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.
<div class="block" data-tab-content="true" id="scrollspysection">
<div class="scrollspy flex flex-wrap">
<div class="flex justify-between items-center px-3 py-2 w-full navbar bg-gray-400 text-white">
<a class="navbar-brand p-2
text-xl text-gray-900" href="#">Navbar</a>
<ul class="flex flex-wrap mb-0 text-center bg-white rounded-full">
<li class="nav-item rounded-full">
<a class="block px-4 py-2 rounded-full text-blue-500" href="#scrollspyHeading1">First</a>
</li>
<li class="nav-item rounded-full">
<a class="block px-4 py-2 text-blue-500 rounded-full" href="#scrollspyHeading2"
onclick="">Second</a>
</li>
<li class="nav-item relative rounded-full" x-data="{ open: false }">
<a class="dropdown-toggle mr-4 cursor-pointer flex items-center justify-center w-full pl-4 py-2 text-blue-500"
@click="open = ! open" href="#dropdown">
Dropdown
<!-- Heroicon name: solid/chevron-down -->
<svg x-bind:style="open ? 'transform: rotate(180deg)' : ''" viewBox="0 0 20 20"
fill="currentColor" class="w-5 h-5 ml-2 -mr-1" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd" />
</svg>
</a>
<ul
class="absolute z-50 py-2 text-left text-gray-600 bg-white border rounded shadow-md "
@click.outside="open = false" x-show="open">
<li>
<a class="block w-full px-4 py-1 hover:text-blue-500
whitespace-nowrap "
href="#scrollspyHeading3">Third</a>
</li>
<li>
<a class="block w-full px-4 py-1 hover:text-blue-500
whitespace-nowrap "
href="#scrollspyHeading4">Fourth</a>
</li>
<hr class="mx-2 overflow-hidden border-gray-400">
<li>
<a class="block w-full px-4 pr-20 hover:text-blue-500 py-1
whitespace-nowrap "
href="#scrollspyHeading5">Fifth</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="anyipsum-output slides overflow-y-auto mt-2 h-48">
<section id="scrollspyHeading1">
<p class="font-semibold text-xl text-gray-900">First heading</hp>
<p class="text-gray-500 mb-4">This is some placeholder content for the
scrollspy page. Note that as you scroll down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.This is some placeholder content for
the
scrollspy page. Note that as you scroll down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.</p>
</section><br>
<section id="scrollspyHeading2">
<h5 class="font-semibold text-xl text-gray-900"> Second heading</h5>
<p class="text-gray-500 mb-4">This is some placeholder content for the
scrollspy page. Note that as you scroll down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.This is some placeholder content for
the
scrollspy page. Note that as you scroll down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.</p>
</section><br>
<section id="dropdown">
<section id="scrollspyHeading3">
<h5 class="font-semibold text-xl text-gray-900">Third heading</h5>
<p class="text-gray-500 mb-4">This is some placeholder content for the
scrollspy page. Note that as you scroll down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.scrollspy page. Note that as you
scroll
down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.</p>
</section><br>
<section id="scrollspyHeading4">
<h5 class="font-semibold text-xl text-gray-900"> Fourth heading</h5>
<p class="text-gray-500 mb-4">This is some placeholder content for the
scrollspy page. Note that as you scroll down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.scrollspy page. Note that as you
scroll
down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.</p>
</section><br>
<section id="scrollspyHeading5">
<h5 class="font-semibold text-xl text-gray-900"> Fifth heading</h5>
<p class="text-gray-500 mb-4">This is some placeholder content for the
scrollspy page. Note that as you scroll down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.scrollspy page. Note that as you
scroll
down the page, the appropriate navigation link is
highlighted. It's repeated throughout the component example. We keep adding some more
example
copy here to emphasize the scrolling and highlighting.</p>
</section>
</section>
</div>
</div>
</div>
<div class="scrollspy flex flex-wrap">
<div class="flex justify-center items-center">
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-blue-500"></div>
</div>
<div class="flex justify-center items-center pl-2">
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-gray-500"></div>
</div>
<div class="flex justify-center items-center pl-2">
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-green-500"></div>
</div>
<div class="flex justify-center items-center pl-2">
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-red-500"></div>
</div>
<div class="flex justify-center items-center pl-2">
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-orange-500"></div>
</div>
<div class="flex justify-center items-center pl-2">
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-cyan-500"></div>
</div>
<div class="flex justify-center items-center pl-2">
<div class="animate-spin rounded-full h-8 w-8 border-b-2 stroke-2 border-gray-500"></div>
</div>
<div class="flex justify-center items-center pl-2">
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-black"></div>
</div>
</div>
<div class="flex space-x-2 animate-pulse mt-4">
<div class="w-8 h-8 bg-blue-500 rounded-full"></div>
<div class="w-8 h-8 bg-gray-500 rounded-full"></div>
<div class="w-8 h-8 bg-green-500 rounded-full"></div>
<div class="w-8 h-8 bg-red-500 rounded-full"></div>
<div class="w-8 h-8 bg-orange-500 rounded-full"></div>
<div class="w-8 h-8 bg-cyan-500 rounded-full"></div>
<div class="w-8 h-8 bg-gray-500 rounded-full"></div>
<div class="w-8 h-8 bg-black rounded-full"></div>
</div>
<div class="flex flex-wrap mt-4">
<button class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white bg-blue-300 border border-blue-300 rounded shadow-md " disabled="">
<div class="flex justify-center items-center">
<div class="animate-spin rounded-full h-3 w-3 border-b-2 border-white"></div>
</div>
</button>
<button class="flex justify-center items-center px-6 py-2 mb-4 mr-4
text-center text-white bg-blue-300 border border-blue-300 rounded shadow-md " disabled="">
<div class="flex justify-center items-center">
<div class="animate-spin rounded-full h-3 w-3 border-b-2 border-white"></div>
</div><span class="mx-2
">Loading...</span>
</button>
<button class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white bg-blue-300 border border-blue-300 rounded shadow-md " disabled="">
<div class="animate-pulse">
<div class="w-3 h-3 bg-white rounded-full"></div>
</div>
</button>
<button class="flex justify-center items-center px-6 py-2 mb-4 mr-4
text-center text-white bg-blue-300 border border-blue-300 rounded shadow-md " disabled="">
<div class="animate-pulse">
<div class="w-3 h-3 bg-white rounded-full"></div>
</div><span class="mx-2
">Loading...</span>
</button>
</div>
Bootstrap
11 mins ago
<div class="block" data-tab-content="true" id="toastssection">
<div class="flex flex-col">
<div x-data="{show: false }" class="p-12 bg-black mt-4 md:w-full">
<div
class="bg-white w-2/4 text-gray-500 flex justify-between items-center py-2 px-4 border-b border-gray-300 rounded-t">
<p class="font-bold text-gray-600 flex items-center">
<svg class="rounded bd-placeholder-img mr-2" width="20" height="20"
xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice"
focusable="false">
<rect width="100%" height="100%" fill="#007aff"></rect>
</svg>
Bootstrap
</p>
<p class="text-gray-600 opacity-90 pl-14 text-xs">11 mins ago</p>
<button @click="show = !show"
class="bg-transparent ml-0 outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-3 h-3" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
<div x-show="!show" class="p-4 w-2/4 bg-gray-200 rounded-b text-sm font-medium text-gray-500">
Hello, world! This is a toast message.
</div>
</div>
<div class="p-12 bg-black mt-4 md:w-full">
<div class="p-4 w-2/4 bg-gray-100 rounded text-sm font-medium text-gray-500">
Hello, world! This is a toast message.
<button class="bg-transparent ml-2 outline-none opacity-80 hover:opacity-100 focus:outline-none"
onclick="closeAlert(event)">
<svg class="w-3 h-3" xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'>
<path
d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z' />
</svg>
</button>
</div>
</div>
<div class="p-12 bg-black mt-4 w-full">
<div class="px-4 py-4 w-2/4 bg-gray-100 rounded text-sm font-medium text-gray-500">
Hello, world! This is a toast message.
<hr class="text-white mt-3 mb-3 border-white">
<button
class="inline-block px-6 py-1.5 mb-3 mr
text-center text-white bg-blue-500 border border-blue-300 rounded shadow-md focus:bg-blue-600 ">Take
action</button>
<button onclick="closeAlert(event)"
class="inline-block px-6 py-1.5 mb-3
text-center text-white bg-black border border-black rounded shadow-md ">Close</button>
</div>
</div>
</div>
</div>
<div class="block" data-tab-content="true" id="tooltipssection">
<div class="mt-4 tooltip-demo ">
<button type="button"
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onmouseenter="toggleTooltip(event,'top','tooltipt')"
onmouseleave="toggleTooltip(event,'top','tooltipt')">Tooltip on top</button>
<div id="tooltipt"
class="z-50 hidden w-32 px-2 py-1 text-sm
text-center text-white bg-gray-900 rounded">
Tooltip on top
<svg
class="absolute z-10 w-6 h-6 text-gray-900 transform translate-x-[2.5rem] -translate-y-2 fill-current stroke-current"
width="8" height="8">
<rect x="12" y="-10" width="12" height="12" transform="rotate(45)" />
</svg>
</div>
<button type="button"
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onmouseenter="toggleTooltip(event,'right','tooltipe')"
onmouseleave="toggleTooltip(event,'right','tooltipe')">Tooltip on end</button>
<div id="tooltipe"
class="hidden w-32 px-2 py-1 text-sm
text-center text-white bg-gray-900 rounded">
Tooltip on end
<svg
class="absolute z-10 w-6 h-6 text-gray-900 transform -translate-x-6 -translate-y-4 fill-current stroke-current"
width="8" height="8">
<rect x="12" y="-10" width="8" height="8" transform="rotate(45)" />
</svg>
</div>
<button type="button"
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onmouseenter="toggleTooltip(event,'bottom','tooltipb')"
onmouseleave="toggleTooltip(event,'bottom','tooltipb')">Tooltip on bottom
</button>
<div id="tooltipb"
class="hidden px-2 py-1 text-sm
text-center text-white bg-gray-900 rounded w-36">
Tooltip on bottom
<svg
class="absolute z-10 w-6 h-6 text-gray-900 transform translate-x-12 -translate-y-8 fill-current stroke-current"
width="8" height="8">
<rect x="12" y="-10" width="12" height="12" transform="rotate(45)" />
</svg>
</div>
<button type="button"
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onmouseenter="toggleTooltip(event,'left','tooltipss')"
onmouseleave="toggleTooltip(event,'left','tooltipss')">Tooltip on start</button>
<div id="tooltipss"
class="hidden w-32 px-2 py-1 text-sm
text-center text-white bg-gray-900 rounded">
Tooltip on start
<svg
class="absolute z-10 w-6 h-6 text-gray-900 transform translate-x-[6.5rem] -translate-y-4 fill-current stroke-current"
width="8" height="8">
<rect x="12" y="-10" width="8" height="8" transform="rotate(45)" />
</svg>
</div>
<button type="button"
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white transition-all duration-500 ease-in-out bg-gray-600 border border-gray-600 rounded shadow-md hover:shadow-xl hover:bg-gray-700 focus:bg-gray-700"
onmouseenter="toggleTooltip(event,'top','tooltipw')"
onmouseleave="toggleTooltip(event,'top','tooltipw')">Tooltip with HTML</button>
<div id="tooltipw"
class="hidden px-2 py-1 text-sm
text-center text-white bg-gray-900 rounded w-36">
<span class="z-50"><em>Tooltip</em> <u>with</u> <b>HTML</b></span>
<svg
class="absolute z-10 w-6 h-6 text-gray-900 transform translate-x-12 -translate-y-2 fill-current stroke-current"
width="8" height="8">
<rect x="12" y="-10" width="12" height="12" transform="rotate(45)" />
</svg>
</div>
</div>
</div>
<div class="block" data-tab-content="true" id="overviewsection">
<div>
<form>
<div class="mb-3">
<label for="disabledTextInput5"
class="inline-block mb-2
text-gray-500">Email
Address
</label>
<input type="text" id="disabledTextInput5"
class="block w-full px-4 py-2 placeholder-gray-500 border focus:border-blue-500 focus:shadow rounded-md outline-none">
<span class="
text-gray-500 mt-1">We'll never share your email with anyone
else.</span>
</div>
<div class="mb-3">
<label for="disabledTextInput6"
class="inline-block mb-2
text-gray-500">Password
</label>
<input type="password" id="disabledTextInput6"
class="block w-full px-4 py-2 placeholder-gray-500 border focus:border-blue-500 focus:shadow rounded-md outline-none">
</div>
<div class="mb-3 flex items-center">
<input class="float-left w-4 h-4 mr-2 bg-center bg-no-repeat border border-blue-500 rounded"
type="checkbox" value="" id="flexCheckDefault3">
<label class="text-gray-500
form-check-label" for="flexCheckDefault3">
Check me out
</label>
</div>
</div>
<div class="mb-3">
<label for="TextInput" class="inline-block mb-2 text-2xl
text-gray-500">Radio Buttons
</label>
<div class="flex items-center">
<input name="radio1" type="radio" class="text-blue-500 border-blue-500 mr-2">
<span class="
text-gray-500">Default Redio</span>
</div>
<div class="flex items-center">
<input name="radio1" type="radio" class="text-blue-500 border-blue-500 mr-2">
<span class="
text-gray-500">Another Redio</span>
</div>
</div>
<div class="mb-3">
<label for="" class="inline-block mb-2
text-gray-500">Upload
</label>
<input type="file" id="choose"
class="block w-full text-xl
border text-gray-500 rounded outline-none focus:border-blue-400 focus:shadow "
aria-label="Large file input example">
</div>
<div class="mb-3 flex items-center">
<button
class="flex items-center h-5 mr-2 transition duration-300 bg-blue-100 border shadow form-check-input top-5 right-5 w-9 rounded-2xl focus:outline-none"
type="checkbox" id="disabledSwitchCheckChecked" disabled="">
<div
class="w-1 h-1 p-2 ml-6 text-white transition duration-500 transform -translate-x-2 bg-white border border-blue-400 rounded-full md:w-2 md:h-2">
</div>
</button>
<label class="text-gray-500
form-check-label" for="disabledSwitchCheckChecked">Checked
switch checkbox input</label>
</div>
<div class="mb-3">
<label for="disabledTextInput" class="inline-block mb-2
text-gray-500">Example
Range
</label>
<div>
<input id="range7" class="range1 rounded-lg overflow-hidden appearance-none bg-blue-100 h-1 w-full"
type="range" min="1" max="100" step="1" value="50" />
</div>
</div>
<button
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white bg-blue-500 border border-blue-300 rounded shadow-md "
disabled="">Submit</button>
</form>
</div>
<form>
<fieldset>
<div class="mb-3">
<label
class="inline-block mb-2
text-gray-500">Disabled
input</label>
<input type="text"
class="block w-full px-4 py-2 placeholder-gray-600 bg-gray-200 rounded-md "
disabled placeholder="Disabled input">
</div>
<div class="mb-3">
<label class="inline-block mb-2
text-gray-500">Disabled
select
menu</label>
<select
class="w-full py-2 pl-4 pr-12 text-gray-700 bg-gray-200 rounded-md ">
<option>Disabled select</option>
</select>
</div>
<div class="mb-3">
<div class="flex items-center form-check">
<input class="w-4 h-4 mr-2" type="checkbox" disabled>
<label class="text-gray-400 form-check-label">
Can't check this
</label>
</div>
</div>
<fieldset class="mb-3">
<label class="w-full mb-2 text-2xl
text-gray-500">Disabled radios buttons</label>
<div class="flex items-center form-check">
<input type="radio" name="radios" class="w-4 h-4 mr-2 form-check-input" id="disabledRadio1"
disabled>
<label class="text-gray-400 form-check-label" for="disabledRadio1">Disabled radio</label>
</div>
<div class="flex items-center mb-3 form-check">
<input type="radio" name="radios" class="w-4 h-4 mr-2 form-check-input" id="disabledRadio2"
disabled>
<label class="text-gray-400 form-check-label" for="disabledRadio2">Another radio</label>
</div>
</fieldset>
<div class="mb-3">
<label class="inline-block mb-2 font-semibold text-gray-500"
>Upload</label>
<input type="file"
class="block w-full py-px font-semibold text-gray-500 bg-gray-200 border rounded shadow-lg"
disabled>
</div>
<div class="flex items-center mb-3">
<button
class="flex items-center h-5 mr-2 transition duration-300 bg-blue-100 border shadow form-check-input top-5 right-5 w-9 rounded-2xl focus:outline-none"
type="checkbox" disabled>
<div
class="w-1 h-1 p-2 ml-6 text-white transition duration-500 transform -translate-x-2 bg-white border border-blue-400 rounded-full md:w-2 md:h-2">
</div>
</button>
<label class="text-gray-400 form-check-label" for="disabledSwitchCheckChecked2"> Disabled Checked
switch checkbox
input</label>
</div>
<div class="mb-3">
<label for="customRange3" class="inline-block mb-2 font-semibold text-gray-500">Disabled
range</label>
<div class="w-full">
<div class="bg-blue-100 h-1 w-full rounded-full shadow relative">
<span
class="bg-white h-4 w-4 absolute border-2 border-blue-500 top-0 -ml-2 -mt-1.5 z-10 drop-shadow-xl rounded-full cursor-pointer"
style="left: 50%"></span>
<span class="bg-blue-100 h-1 absolute left-0 top-0 shadow rounded-full"
style="width: 50%"></span>
</div>
<div class="flex justify-between mt-2 text-xs text-gray-600"></div>
</div>
</div>
<button
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white bg-blue-300 border border-blue-300 rounded shadow-md "
disabled>Submit</button>
</fieldset>
</form>
<div>
<div class="mb-3">
<input class="block w-full px-6 py-2 text-xl
border rounded outline-none focus:border-cyan-400 focus:shadow " type="text" placeholder=".form-control-lg" aria-label=".form-control-lg example">
</div>
<div class="mb-3">
<select class="inline-block w-full py-2 pl-6 pr-12 mb-3 text-xl
border rounded outline-none focus:border-cyan-400 focus:shadow " aria-label=".form-select-lg example">
<option selected="">Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
<div class="mb-3">
<input type="file" class="block w-full px-4 py-2 text-xl
border rounded outline-none focus:border-cyan-400 focus:shadow " aria-label="Large file input example">
</div>
</div>
<div class="mt-4">
<div class="mb-3">
<input class="block w-full px-4 py-1 text-sm
border rounded outline-none focus:border-cyan-400 focus:shadow " type="text" placeholder=".form-control-sm" aria-label=".form-control-sm example">
</div>
<div class="mb-3">
<select class="inline-block w-full py-1 pl-4 pr-12 text-sm
border rounded outline-none focus:border-cyan-400 focus:shadow " aria-label=".form-select-sm example">
<option selected="">Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
<div class="mb-3">
<input type="file" class="block w-full px-4 py-1 text-sm
border rounded outline-none focus:border-cyan-400 focus:shadow " aria-label="Small file input example">
</div>
</div>
<div class="block" data-tab-content="true" id="inputgroupsection">
<div>
<div class="relative flex items-stretch w-full mb-3 ">
<span
class="flex items-center px-4 py-2 font-semibold text-gray-500 border-t border-b border-l rounded whitespace-nowrap"
id="basic-addon1">@</span>
<input type="text"
class="block w-full px-4 py-2 font-semibold placeholder-gray-500 border outline-none focus:border-blue-400 focus:shadow "
placeholder="Username" aria-label="Username" aria-describedby="basic-addon1">
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text"
class="block w-full px-4 py-2 font-semibold placeholder-gray-500 border rounded outline-none focus:border-blue-400 focus:shadow "
placeholder="Recipient's username" aria-label="Recipient's username"
aria-describedby="basic-addon2">
<span
class="flex items-center px-4 py-2 font-semibold text-gray-500 border-t border-b border-r rounded whitespace-nowrap"
id="basic-addon2">@example.com</span>
</div>
<label for="basic-url" class="inline-block mb-2 font-semibold text-gray-500">Your vanity
URL</label>
<div class="relative flex items-stretch w-full mb-3">
<span
class="flex items-center px-4 py-2 font-semibold text-gray-500 border-t border-b border-l rounded whitespace-nowrap"
id="basic-addon3">https://example.com/users/</span>
<input type="text"
class="block w-full px-4 py-2 border outline-none focus:border-blue-400 focus:shadow "
id="basic-url" aria-describedby="basic-addon3">
</div>
<div class="relative flex items-stretch w-full mb-3">
<span
class="flex items-center px-4 py-2 font-semibold text-gray-500 border-t border-b border-l rounded-l whitespace-nowrap">$</span>
<input type="text"
class="block w-full px-4 py-2 border outline-none focus:border-blue-400 focus:shadow "
aria-label="Amount (to the nearest dollar)">
<span
class="flex items-center px-4 py-2 font-semibold text-gray-500 border-t border-b border-r rounded-r">.00</span>
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<span
class="flex items-center px-4 py-2 font-semibold text-gray-500 border-t border-b border-l rounded whitespace-nowrap">With
textarea</span>
<textarea
class="block w-full px-4 py-2 border outline-none focus:border-blue-400 focus:shadow "
aria-label="With textarea"></textarea>
</div>
</div>
</div>
<div class="block" data-tab-content="true" id="alertnatesection">
<div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text"
class="block w-full px-4 py-2 placeholder-gray-600 rounded shadow-sm outline-none focus:border-blue-400"
placeholder="Enter Text" aria-label="Username" aria-describedby="basic-addon1">
</div>
<div class="relative flex items-stretch w-full mb-3 rounded shadow-sm">
<span
class="flex items-center px-2 py-2 font-semibold text-gray-500 rounded whitespace-nowrap"
id="basic-addon1">@</span>
<input type="text" class="block w-full px-2 py-2 placeholder-gray-600 outline-none "
placeholder="Addon" aria-label="Username" aria-describedby="basic-addon1">
</div>
<div class="relative flex items-stretch w-full mb-3 rounded shadow-sm">
<input type="text"
class="block w-full px-2 py-2 placeholder-gray-600 outline-none focus:border-blue-400"
placeholder="Addon" aria-label="Recipient's username" aria-describedby="basic-addon2">
<span class="flex items-center px-2 py-2 font-semibold text-gray-500 whitespace-nowrap"
id="basic-addon2">@</span>
</div>
<div class="relative flex items-stretch w-full mb-3">
<input type="text"
class="block w-full px-4 py-2 placeholder-gray-600 border-b rounded shadow-sm outline-none border-green-200 is-valid focus:border-blue-400 "
placeholder="Enter Text" aria-label="Username" aria-describedby="basic-addon1">
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text"
class="block w-full px-4 py-2 placeholder-gray-600 rounded shadow-sm outline-none is-invalid border-b border-red-200 focus:border-blue-400"
placeholder="Enter Text" aria-label="Username" aria-describedby="basic-addon1">
</div>
<div class="relative flex items-stretch w-full mb-3">
<input type="text"
class="block w-full px-4 py-2 placeholder-gray-600 border border-green-500 rounded shadow outline-none is-valid focus:border-green-400 focus:shadow"
placeholder="Enter Text" aria-label="Username" aria-describedby="basic-addon1">
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text"
class="block w-full px-4 py-2 placeholder-gray-600 border border-red-500 rounded shadow outline-none is-invalid focus:border-red-400 focus:shadow "
placeholder="Enter Text" aria-label="Username" aria-describedby="basic-addon1"
style="background-image:data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c03221'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c03221' stroke='none'/%3e%3c/svg%3e">
</div>
</div>
</div>
<div class="block" data-tab-content="true" id="floatingsection">
<div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text" autocomplete="off"
class="peer placeholder-transparent block w-full p-3 pt-6 rounded outline-none border text-gray-600 focus:shadow focus:border-blue-400"
placeholder="Email address" name="email" aria-label="email address"
aria-describedby="basic-addon1">
<label for="email"
class="absolute left-4 top-1 text-gray-500 font-semibold text-sm transition-all peer-placeholder-shown: peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-4 peer-focus:top-1 peer-focus:font-semibold peer-focus:text-gray-500 peer-focus:text-sm ">Email
address</label>
</div>
<div class="relative flex items-stretch w-full mb-3">
<input type="password" autocomplete="off"
class="peer placeholder-transparent block w-full p-3 pt-6 rounded outline-none border text-gray-600 focus:shadow focus:border-blue-400"
placeholder="Password" name="password" aria-label="Password" aria-describedby="basic-addon1">
<label for="password"
class="absolute left-4 top-1 text-gray-500 font-semibold text-sm transition-all peer-placeholder-shown: peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-4 peer-focus:top-1 peer-focus:font-semibold peer-focus:text-gray-500 peer-focus:text-sm ">Password</label>
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text"
class="block w-full p-4 bg-gray-200 rounded placeholder-gray-500 font-semibold"
placeholder="Regular" disabled="disabled" aria-label="Regular" aria-describedby="basic-addon2">
</div>
<div class="relative flex items-stretch w-full mb-3">
<input type="text" autocomplete="off"
class="peer placeholder-transparent block w-full p-3 pt-6 outline-none border text-gray-600 focus:shadow focus:border-blue-400 border-green-500 rounded is-valid"
placeholder="Regular" name="regular" aria-label="Regular" aria-describedby="basic-addon1">
<label for="regular"
class="absolute left-4 top-1 text-gray-500 font-semibold text-sm transition-all peer-placeholder-shown: peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-4 peer-focus:top-1 peer-focus:font-semibold peer-focus:text-gray-500 peer-focus:text-sm ">Regular</label>
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text" autocomplete="off"
class="peer placeholder-transparent block w-full p-3 pt-6 text-gray-600 focus:shadow focus:border-blue-400 border border-red-500 rounded outline-none is-invalid"
placeholder="Regular" aria-label="Regular" name="regular" aria-describedby="basic-addon1"
style="background-image:data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c03221'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c03221' stroke='none'/%3e%3c/svg%3e">
<label for="regular"
class="absolute left-4 top-1 text-gray-500 font-semibold text-sm transition-all peer-placeholder-shown: peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-4 peer-focus:top-1 peer-focus:font-semibold peer-focus:text-gray-500 peer-focus:text-sm ">Regular</label>
</div>
</div>
</div>
<div class="block" data-tab-content="true" id="alertfloatingsection">
<div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text" autocomplete="off"
class="peer placeholder-transparent block w-full p-3 rounded outline-none border text-gray-600 focus:shadow focus:border-blue-400"
placeholder="Small" name="Small" aria-label="Small" aria-describedby="basic-addon1">
<label for="small"
class="absolute left-4 -top-3 bg-white px-1 text-gray-600 text-sm peer-focus:px-2 font-semibold peer-placeholder-shown: peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-4 transition-all peer-focus:text-gray-700 peer-focus:bg-white peer-focus:left-2 peer-focus:text-sm peer-focus:
peer-focus:-top-3">
Small</label>
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text" autocomplete="off"
class="peer placeholder-transparent block w-full p-4 rounded outline-none border text-gray-600 focus:shadow focus:border-blue-400"
placeholder="Regular" name="Regular" aria-label="Regular" aria-describedby="basic-addon1">
<label for="Regular"
class="absolute left-4 -top-3 bg-white px-1 text-gray-600 text-sm peer-focus:px-2 font-semibold peer-placeholder-shown: peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-4 transition-all peer-focus:text-gray-700 peer-focus:bg-white peer-focus:left-2 peer-focus:text-sm peer-focus:
peer-focus:-top-3">
Regular</label>
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text" autocomplete="off"
class="peer placeholder-transparent block w-full p-5 rounded outline-none border text-gray-600 focus:shadow focus:border-blue-400"
placeholder="Large" name="Large" aria-label="Large" aria-describedby="basic-addon1">
<label for="Large"
class="absolute left-4 -top-3 bg-white px-1 text-gray-600 text-sm peer-focus:px-2 font-semibold peer-placeholder-shown: peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-4 transition-all peer-focus:text-gray-700 peer-focus:bg-white peer-focus:left-2 peer-focus:text-sm peer-focus:
peer-focus:-top-3">
Large</label>
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text"
class="block w-full p-4 bg-gray-200 rounded placeholder-gray-500 font-semibold"
placeholder="Regular" disabled="disabled" aria-label="Regular" aria-describedby="basic-addon2">
</div>
<div class="relative flex items-stretch w-full mb-3">
<input type="text" autocomplete="off"
class="peer placeholder-transparent block w-full p-4 outline-none border text-gray-600 focus:shadow border-green-500 rounded is-valid"
placeholder="Regular" name="regular" aria-label="Regular" aria-describedby="basic-addon1">
<label for="regular"
class="absolute left-4 -top-3 bg-white px-1 text-gray-600 text-sm peer-focus:px-2 font-semibold peer-placeholder-shown: peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-4 transition-all peer-focus:text-gray-700 peer-focus:bg-white peer-focus:left-2 peer-focus:text-sm peer-focus:
peer-focus:-top-3">
Regular</label>
</div>
<div class="relative flex items-stretch w-full mb-3 ">
<input type="text" autocomplete="off"
class="peer placeholder-transparent block w-full p-4 text-gray-600 focus:shadow border border-red-500 rounded outline-none is-invalid"
placeholder="Regular" aria-label="Regular" name="regular" aria-describedby="basic-addon1"
style="background-image:data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c03221'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c03221' stroke='none'/%3e%3c/svg%3e">
<label for="regular"
class="absolute left-4 -top-3 bg-white px-1 text-gray-600 text-sm peer-focus:px-2 font-semibold peer-placeholder-shown: peer-placeholder-shown:text-gray-500 peer-placeholder-shown:top-4 transition-all peer-focus:text-gray-700 peer-focus:bg-white peer-focus:left-2 peer-focus:text-sm peer-focus:
peer-focus:-top-3">
Regular</label>
</div>
</div>
</div>
</div>
<div class="block" data-tab-content="true" id="togglesection">
<div class="flex items-center">
<div class="mr-4 flex items-center">
<input type="checkbox" name="remember"
class="w-4 h-4 border border-blue-300 rounded-sm outline-none cursor-pointer" />
<label class="ml-2 text-lg text-gray-600" for="email">Checkbox</label>
</div>
<div class="mr-4 flex items-center">
<input type="checkbox" name="remember"
class="w-4 h-4 border border-blue-300 rounded-sm outline-none cursor-pointer" checked />
<label class="ml-2 text-lg text-gray-600" for="email">Checked</label>
</div>
<div class="mr-4 flex items-center">
<input type="checkbox" name="remember"
class="w-4 h-4 border border-blue-300 rounded-sm outline-none cursor-pointer" disabled />
<label class="ml-2 text-lg text-gray-600" for="email">Disabled</label>
</div>
<div class="mr-4 flex items-center">
<input type="checkbox" name="remember"
class="w-4 h-4 border border-blue-300 rounded-sm outline-none cursor-pointer" checked disabled />
<label class="ml-2 text-lg text-gray-600" for="email">Disabled Checked</label>
</div>
</div>
<div class="flex items-center mt-4">
<div class="mr-4 flex items-center">
<input name="select" type="radio"
class="w-4 h-4 border border-gray-300 rounded-full outline-none cursor-pointer" value="male"
checked="" /><label class="ml-2 text-lg text-gray-600" for="male">Active</label>
</div>
<div class="mr-4 flex items-center">
<input name="select" type="radio"
class="w-4 h-4 border border-gray-300 rounded-full outline-none cursor-pointer" value="male"
checked="" /><label class="ml-2 text-lg text-gray-600" for="male">Inctive</label>
</div>
<div class="mr-4 flex items-center">
<input name="select1" type="radio"
class="w-4 h-4 border border-gray-300 rounded-full outline-none cursor-pointer" value="male"
checked="" disabled checked /><label class="ml-2 text-lg text-gray-500" for="male">Active -
Disabled</label>
</div>
<div class="mr-4 flex items-center">
<input name="select1" type="radio"
class="w-4 h-4 border border-gray-300 rounded-full outline-none cursor-pointer" value="male"
checked="" disabled /><label class="ml-2 text-lg text-gray-500" for="male">Inctive -
Disabled</label>
</div>
</div>
<div class="flex items-center mt-4">
<div class="mr-4 flex items-center">
<label for="toggleA" class="flex items-center cursor-pointer">
<!-- toggle -->
<div class="relative">
<!-- input -->
<input type="checkbox" id="toggleA" class="sr-only">
<!-- line -->
<div class="block bg-blue-200 w-8 h-4 rounded-full border border-blue-500"></div>
<!-- dot -->
<div
class="dot absolute inset-0 bg-white w-4 h-4 rounded-full transition border-2 border-blue-500">
</div>
</div>
<!-- label -->
<div class="ml-2 text-lg text-gray-600">
Off Switch
</div>
</label>
</div>
<div class="mr-4 flex items-center">
<label for="toggleB" class="flex items-center cursor-pointer">
<!-- toggle -->
<div class="relative">
<!-- input -->
<input type="checkbox" id="toggleB" class="sr-only">
<!-- line -->
<div class="block bg-gray-200 w-8 h-4 rounded-full"></div>
<!-- dot -->
<div class="dot absolute inset-0 bg-white w-4 h-4 rounded-full transition"></div>
</div>
<!-- label -->
<div class="ml-2 text-lg text-gray-600">
On Switch
</div>
</label>
</div>
<div class="mr-4 flex items-center">
<label class="flex items-center cursor-pointer">
<!-- toggle -->
<div class="relative">
<!-- input -->
<input type="checkbox" class="sr-only" disabled>
<!-- line -->
<div class="block bg-gray-200 w-8 h-4 rounded-full"></div>
<!-- dot -->
<div class="dot absolute inset-0 bg-white w-4 h-4 rounded-full transition"></div>
</div>
<!-- label -->
<div class="ml-2 text-lg text-gray-600">
Disabled Switch
</div>
</label>
</div>
<div class="mr-4 flex items-center">
<label class="flex items-center cursor-pointer">
<!-- toggle -->
<div class="relative">
<!-- input -->
<input type="checkbox" class="sr-only" disabled checked>
<!-- line -->
<div class="block bg-blue-200 w-8 h-4 rounded-full"></div>
<!-- dot -->
<div
class="dot absolute inset-0 bg-white w-4 h-4 border-2 border-blue-500 rounded-full transition">
</div>
</div>
<!-- label -->
<div class="ml-2 text-lg text-gray-600">
Switch
</div>
</label>
</div>
</div>
<div class="text-lg text-gray-600 mt-4">
Example Range
<div class="w-full my-4">
<div class="bg-blue-100 h-1 w-full rounded-full shadow relative">
<span
class="bg-white h-4 w-4 absolute border-2 border-blue-500 top-0 -ml-2 -mt-1.5 z-10 drop-shadow-xl rounded-full cursor-pointer"
style="left: 50%"></span>
<span class="bg-blue-100 h-1 absolute left-0 top-0 shadow rounded-full" style="width: 50%"></span>
</div>
<div class="flex justify-between mt-2 text-xs text-gray-600"></div>
</div>
<div>
<input id="range1" class="range1 rounded-lg overflow-hidden appearance-none bg-blue-100 h-1 w-full"
type="range" min="1" max="100" step="1" value="50" />
</div>
<div>
<input id="range2" class="rounded-lg overflow-hidden appearance-none bg-gray-100 h-1 w-full"
type="range" min="1" max="100" step="1" value="50" />
</div>
<div>
<input id="range3" class="rounded-lg overflow-hidden appearance-none bg-green-100 h-1 w-full"
type="range" min="1" max="100" step="1" value="50" />
</div>
<div>
<input id="range4" class="rounded-lg overflow-hidden appearance-none bg-red-100 h-1 w-full"
type="range" min="1" max="100" step="1" value="50" />
</div>
<div>
<input id="range5" class="rounded-lg overflow-hidden appearance-none bg-orange-100 h-1 w-full"
type="range" min="1" max="100" step="1" value="50" />
</div>
<div>
<input id="range6" class="rounded-lg overflow-hidden appearance-none bg-gray-200 h-1 w-full"
type="range" min="1" max="100" step="1" value="50" />
</div>
</div>
</div>
<div class="block" data-tab-content="true" id="validationsection">
<div class="flex flex-wrap">
<div class="mb-3 w-full md:w-1/3">
<label for="TextInput" class="inline-block mb-2
text-gray-500">First Name
</label>
<input type="text" id="disabledTextInput1" placeholder="Mark"
class="is-valid block w-full px-4 py-2 placeholder-gray-500 border border-green-500 focus:shadow rounded-md outline-none">
<span class="
text-green-500 mt-1">Looks good!</span>
</div>
<div class="mb-3 md:ml-4 md:w-1/3 w-full">
<label for="TextInput" class="inline-block mb-2
text-gray-500">Last Name
</label>
<input type="text" id="disabledTextInput2" placeholder="Otto"
class="is-valid block w-full px-4 py-2 placeholder-gray-500 border border-green-500 focus:shadow rounded-md outline-none">
<span class="
text-green-500 mt-1">Looks good!</span>
</div>
<div class="mb-3 md:ml-4 md:w-1/4 w-full">
<label for="Textinput" class="inline-block mb-2
text-gray-500">Username
</label>
<div class="relative flex items-stretch mb-3 ">
<span
class="flex items-center px-4 py-2
border-t border-b border-l rounded whitespace-nowrap"
id="basic-addon1">@</span>
<input type="text"
class="is-invalid block w-full px-4 py-2 border border-red-500 outline-none rounded-r focus:border-red-400 focus:shadow hover:border-red-500"
aria-label="Username" aria-describedby="basic-addon1">
</div>
<span class="
text-red-400 mt-1">Please choose a username.</span>
</div>
</div>
<div class="flex flex-wrap">
<div class="mb-3 md:w-2/4 w-full">
<label for="TextInput" class="inline-block mb-2
text-gray-500">City
</label>
<input type="text" id="disabledTextInput3" placeholder="Otto"
class="is-invalid w-full block px-4 py-2 placeholder-gray-500 border border-red-500 focus:border-red-500 focus:shadow rounded-md outline-none">
<span class="
text-red-400 mt-1">Please provide a valid city.</span>
</div>
<div class="mb-3 md:ml-4 md:w-1/5 w-full">
<label for="TextInput" class="inline-block mb-2
text-gray-500">State
</label>
<select
class="is-invalid1 block w-full py-2 px-4 text-gray-400
border border-red-500 rounded-lg outline-none hover:border-red-500"
placeholder="choose" aria-label=".form-select-lg example">
<option selected="">Choose</option>
<option value="1">...</option>
</select>
<span class="
text-red-400 mt-1">Please select a valid state.</span>
</div>
<div class="mb-3 md:ml-4 md:w-1/5 w-full">
<label for="TextInput" class="inline-block mb-2
text-gray-500">Zip
</label>
<input type="text" id="disabledTextInput4" placeholder="Otto"
class="is-invalid w-full block px-4 py-2 placeholder-gray-400 border border-red-500 focus:border-red-500 focus:shadow rounded-md outline-none">
<span class="
text-red-400 mt-1">Please provide a valid zip.</span>
</div>
</div>
<div class="mb-3 flex">
<input class="float-left w-4 h-4 mr-2 mt-1 bg-center bg-no-repeat border border-blue-500 rounded"
type="checkbox" value="" id="flexCheckDefault3">
<label class="text-red-400 font-medium form-check-label" for="flexCheckDefault3">
Agree to terms and conditions <br>
<span class="
">You must agree before submitting.</span>
</label>
</div>
<button
class="inline-block px-6 py-2 mb-4 mr-4
text-center text-white bg-blue-500 border border-blue-300 rounded shadow-md "
disabled="">Submit Form
</button>
Display 1
Display 2
Display 3
Display 4
Display 5
Display 6
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
This is a lead paragraph. It stands out from regular paragraphs.
You can use the mark tag to highlight text.
This line of text is meant to be treated as deleted text.
This line of text is meant to be treated as no longer accurate.
This line of text is meant to be treated as an addition to the document.
This line of text will render as underlined.
This line of text is meant to be treated as fine print.
This line rendered as bold text.
This line rendered as italicized text.
A well-known quote, contained in a blockquote element.
<div>
<p class="mb-4 font-light text-gray-600 md:text-8xl text-7xl">Display 1</p>
<p class="mb-4 text-6xl font-light text-gray-600 md:text-7xl">Display 2</p>
<p class="mb-4 text-5xl font-light text-gray-600 md:text-6xl">Display 3</p>
<p class="mb-4 text-4xl font-light text-gray-600 md:text-5xl">Display 4</p>
<p class="mb-4 text-3xl font-light text-gray-600 md:text-4xl">Display 5</p>
<p class="mb-4 text-2xl font-light text-gray-600 md:text-3xl">Display 6</p>
</div>
<div class="mt-4">
<p class="text-4xl font-medium">Heading 1</p>
<p class="text-3xl font-medium">Heading 2</p>
<p class="text-2xl font-medium">Heading 3</p>
<p class="text-xl font-medium">Heading 4</p>
<p class="text-lg font-medium">Heading 5</p>
<p class=" font-medium">Heading 6</p>
</div>
<div class="mt-4">
<p class="text-xl font-light">This is a lead paragraph. It stands out from regular paragraphs.</p>
</div>
<div class="mt-4">
<p class="mb-4">You can use the mark tag to <mark>highlight</mark> text.</p>
<p class="mb-4"><del>This line of text is meant to be treated as deleted text.</del></p>
<p class="mb-4"><s>This line of text is meant to be treated as no longer accurate.</s></p>
<p class="mb-4"><ins>This line of text is meant to be treated as an addition to the document.</ins></p>
<p class="mb-4"><u>This line of text will render as underlined.</u></p>
<p class="mb-4"><small>This line of text is meant to be treated as fine print.</small></p>
<p class="mb-4"><strong>This line rendered as bold text.</strong></p>
<p class="mb-4"><em>This line rendered as italicized text.</em></p>
</div>
<div class="mt-4">
<blockquote class="mb-4 text-xl">
<p class="mb-4">A well-known quote, contained in a blockquote element.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
<div class="mt-4">
<ul class="mb-4">
<li>This is a list.</li>
<li>It appears completely unstyled.</li>
<li>Structurally, it's still a list.</li>
<li>However, this style only applies to immediate child elements.</li>
<li>Nested lists:
<ul class="pl-8 list-disc">
<li>are unaffected by this style</li>
<li>will still show a bullet</li>
<li>and have appropriate left margin</li>
</ul>
</li>
<li>This may still come in handy in some situations.</li>
</ul>
</div>
<div class="mt-4">
<ul class="list-inline">
<li class="inline-block mr-2">This is a list item.</li>
<li class="inline-block mr-2">And another one.</li>
<li class="inline-block">But they're displayed inline.</li>
</ul>
</div>
<div class="bg-white">
<svg class="w-full " width="100%" height="250" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: Responsive image" preserveAspectRatio="xMidYMid slice" focusable="false"><title>Placeholder</title><rect width="100%" height="100%" fill="#868e96"></rect><text x="40%" y="50%" fill="#dee2e6" dy=".3em">Responsive image</text></svg>
</div>
<div class="mt-4">
<svg class="p-1 border border-gray-300 rounded" width="200" height="200" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera: 200x200" preserveAspectRatio="xMidYMid slice" focusable="false"><title>A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera</title><rect width="100%" height="100%" fill="#868e96"></rect><text x="33%" y="50%" fill="#dee2e6" dy=".3em">200x200</text></svg>
</div>
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry the Bird |
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry the Bird |
Class | Heading | Heading |
---|---|---|
Default | Cell | Cell |
Primary | Cell | Cell |
Secondary | Cell | Cell |
Success | Cell | Cell |
Danger | Cell | Cell |
Warning | Cell | Cell |
Info | Cell | Cell |
Light | Cell | Cell |
Dark | Cell | Cell |
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry the Bird |
<div>
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-100">
<tr>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-500 uppercase">#</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-500 uppercase">First</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-500 uppercase">Last</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-500 uppercase">Handle</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">1</th>
<td class="px-6 py-4 whitespace-nowrap">Mark</td>
<td class="px-6 py-4 whitespace-nowrap">Otto</td>
<td class="px-6 py-4 whitespace-nowrap">@mdo</td>
</tr>
<tr>
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">2</th>
<td class="px-6 py-4 whitespace-nowrap">Jacob</td>
<td class="px-6 py-4 whitespace-nowrap">Thornton</td>
<td class="px-6 py-4 whitespace-nowrap">@fat</td>
</tr>
<tr>
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">3</th>
<td colspan="2" class="px-6 py-4 whitespace-nowrap">Larry the Bird</td>
<td class="px-6 py-4 whitespace-nowrap">@twitter</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-4">
<table class="min-w-full bg-black divide-y divide-black">
<thead class="bg-black">
<tr>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left uppercase text-gray-50">#</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left uppercase text-gray-50">First</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left uppercase text-gray-50">Last</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left uppercase text-gray-50">Handle</th>
</tr>
</thead>
<tbody class="bg-black divide-y divide-black">
<tr>
<th scope="row" class="px-6 py-4 text-justify text-gray-50 whitespace-nowrap">1</th>
<td class="px-6 py-4 text-gray-50 whitespace-nowrap">Mark</td>
<td class="px-6 py-4 text-gray-50 whitespace-nowrap">Otto</td>
<td class="px-6 py-4 text-gray-50 whitespace-nowrap">@mdo</td>
</tr>
<tr>
<th scope="row" class="px-6 py-4 text-justify text-gray-50 whitespace-nowrap">2</th>
<td class="px-6 py-4 text-gray-50 whitespace-nowrap">Jacob</td>
<td class="px-6 py-4 text-gray-50 whitespace-nowrap">Thornton</td>
<td class="px-6 py-4 text-gray-50 whitespace-nowrap">@fat</td>
</tr>
<tr>
<th scope="row" class="px-6 py-4 text-justify text-gray-50 whitespace-nowrap">3</th>
<td colspan="2" class="px-6 py-4 text-gray-50 whitespace-nowrap">Larry the Bird</td>
<td class="px-6 py-4 text-gray-50 whitespace-nowrap">@twitter</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-4">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-100">
<tr>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-600 uppercase">Class</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-600 uppercase">Heading</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-600 uppercase">Heading</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">Default</th>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
</tr>
<tr class="bg-blue-100 hover:bg-blue-200">
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">Primary</th>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
</tr>
<tr class="bg-gray-300 hover:bg-gray-400">
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">Secondary</th>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
</tr>
<tr class="bg-green-100 hover:bg-green-200">
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">Success</th>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
</tr>
<tr class="bg-red-100 hover:bg-red-200">
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">Danger</th>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
</tr>
<tr class="bg-orange-100 hover:bg-orange-200">
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">Warning</th>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
</tr>
<tr class="bg-cyan-100 hover:bg-cyan-200">
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">Info</th>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
</tr>
<tr class="bg-gray-200 hover:bg-gray-300">
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">Light</th>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
</tr>
<tr class="text-white bg-gray-900 hover:bg-gray-900">
<th scope="row" class="px-6 py-4 text-justify whitespace-nowrap">Dark</th>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
<td class="px-6 py-4 whitespace-nowrap">Cell</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-4">
<table class="min-w-full border border-collapse">
<thead class="bg-gray-100 ">
<tr>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-500 uppercase border">#</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-500 uppercase border">First</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-500 uppercase border">Last</th>
<th scope="col" class="px-6 py-3 font-medium tracking-wider text-left text-gray-500 uppercase border">Handle</th>
</tr>
</thead>
<tbody class="bg-white ">
<tr>
<th scope="row" class="p-1 text-justify border whitespace-nowrap">1</th>
<td class="p-1 border whitespace-nowrap">Mark</td>
<td class="p-1 border whitespace-nowrap">Otto</td>
<td class="p-1 border whitespace-nowrap">@mdo</td>
</tr>
<tr>
<th scope="row" class="p-1 text-justify border whitespace-nowrap">2</th>
<td class="p-1 border whitespace-nowrap">Jacob</td>
<td class="p-1 border whitespace-nowrap">Thornton</td>
<td class="p-1 border whitespace-nowrap">@fat</td>
</tr>
<tr>
<th scope="row" class="p-1 text-justify border whitespace-nowrap">3</th>
<td colspan="2" class="p-1 border whitespace-nowrap">Larry the Bird</td>
<td class="p-1 border whitespace-nowrap">@twitter</td>
</tr>
</tbody>
</table>
</div>
<div>
<figure class="inline-block mb-4">
<svg class="mb-2 rounded" width="100%" height="300" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: 400x300" preserveAspectRatio="xMidYMid slice" focusable="false"><title>Placeholder</title><rect width="400" height="100%" fill="#868e96"></rect><text x="42%" y="50%" fill="#dee2e6" dy=".3em">400x300</text></svg>
<figcaption class="text-sm text-gray-600">A caption for the above image.</figcaption>
</figure>
</div>