E-commerce Order Progress Bar
A responsive progress bar component for e-commerce with dark mode support, featuring a monochromatic design. No JavaScript, only HTML and Tailwind CSS.
HTML Code
<div class="dark:bg-gray-900 min-h-screen p-4 flex items-center justify-center">
<div class="w-full max-w-2xl bg-white dark:bg-gray-800 rounded-lg shadow-xl p-6">
<h2 class="text-2xl font-bold text-gray-800 dark:text-white mb-6">Order Progress</h2>
<div class="mb-8">
<div class="flex justify-between mb-1">
<span class="text-base font-medium text-gray-700 dark:text-gray-300">Order Placed</span>
<span class="text-sm font-medium text-gray-700 dark:text-gray-300">100%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 100%;"></div>
</div>
</div>
<div class="mb-8">
<div class="flex justify-between mb-1">
<span class="text-base font-medium text-gray-700 dark:text-gray-300">Processing</span>
<span class="text-sm font-medium text-gray-700 dark:text-gray-300">75%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 75%;"></div>
</div>
</div>
<div class="mb-8">
<div class="flex justify-between mb-1">
<span class="text-base font-medium text-gray-700 dark:text-gray-300">Shipped</span>
<span class="text-sm font-medium text-gray-700 dark:text-gray-300">50%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 50%;"></div>
</div>
</div>
<div class="mb-8">
<div class="flex justify-between mb-1">
<span class="text-base font-medium text-gray-700 dark:text-gray-300">Out for Delivery</span>
<span class="text-sm font-medium text-gray-700 dark:text-gray-300">25%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 25%;"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-base font-medium text-gray-700 dark:text-gray-300">Delivered</span>
<span class="text-sm font-medium text-gray-700 dark:text-gray-300">0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 0%;"></div>
</div>
</div>
</div>
</div>
Related Components
Skeuomorphic_Monochromatic_Progress_Bar
A moderate complexity skeumorphic progress bar component for e-commerce, featuring a monochromatic color scheme, full responsivity, and dark mode support.
3D Grayscale Sports Fitness Progress Bar
A complex, 3D grayscale progress bar component designed for sports and fitness applications, showing training progress with depth and visual engagement. It includes dark mode support and is fully responsive.
Gradient Rainbow Progress Bar for Photography
A complex, responsive progress bar component for photography portfolios, featuring a multi-color gradient rainbow design and dark mode support. Ideal for showcasing photo loading or gallery progression.