Skip to content

Instantly share code, notes, and snippets.

@cadreoneseven
Created July 28, 2021 22:00
Show Gist options
  • Save cadreoneseven/e5a68483b08f2c54ad52eb920dd85714 to your computer and use it in GitHub Desktop.
Save cadreoneseven/e5a68483b08f2c54ad52eb920dd85714 to your computer and use it in GitHub Desktop.
Tailwind Responsive Timeline Example
<!-- Modified Version of - https://tailwindcomponents.com/component/vertical-timeline -->
<body class="bg-gray-50">
<div class="p-4 mt-4">
<h1 class="text-4xl text-center font-semibold mb-6">Package status</h1>
<div class="container">
<div class="flex flex-col md:grid grid-cols-12 text-gray-50">
<div class="flex md:contents">
<div class="col-start-2 col-end-4 mr-10 md:mx-auto relative">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-green-500 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-green-500 shadow text-center">
<i class="fas fa-check-circle text-white"></i>
</div>
</div>
<div class="bg-green-500 col-start-4 col-end-12 p-4 rounded-xl my-4 mr-auto shadow-md w-full">
<h3 class="font-semibold text-lg mb-1">Package Booked</h3>
<p class="leading-tight text-justify w-full">
21 July 2021, 04:30 PM
</p>
</div>
</div>
<div class="flex md:contents">
<div class="col-start-2 col-end-4 mr-10 md:mx-auto relative">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-green-500 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-green-500 shadow text-center">
<i class="fas fa-check-circle text-white"></i>
</div>
</div>
<div class="bg-green-500 col-start-4 col-end-12 p-4 rounded-xl my-4 mr-auto shadow-md w-full">
<h3 class="font-semibold text-lg mb-1">Out for Delivery</h3>
<p class="leading-tight text-justify">
22 July 2021, 01:00 PM
</p>
</div>
</div>
<div class="flex md:contents">
<div class="col-start-2 col-end-4 mr-10 md:mx-auto relative">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-red-500 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-red-500 shadow text-center">
<i class="fas fa-times-circle text-white"></i>
</div>
</div>
<div class="bg-red-500 col-start-4 col-end-12 p-4 rounded-xl my-4 mr-auto shadow-md w-full">
<h3 class="font-semibold text-lg mb-1 text-gray-50">Cancelled</h3>
<p class="leading-tight text-justify">
Customer cancelled the order
</p>
</div>
</div>
<div class="flex md:contents">
<div class="col-start-2 col-end-4 mr-10 md:mx-auto relative">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-gray-300 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-gray-300 shadow text-center">
<i class="fas fa-exclamation-circle text-gray-400"></i>
</div>
</div>
<div class="bg-gray-300 col-start-4 col-end-12 p-4 rounded-xl my-4 mr-auto shadow-md w-full">
<h3 class="font-semibold text-lg mb-1 text-gray-400">Delivered</h3>
<p class="leading-tight text-justify">
</p>
</div>
</div>
</div>
</div>
</div>
</body>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.7/tailwind.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment