Progress Indicators Component
A progress indicator component with a glassmorphism style, responsive design, and dark theme support. Uses Tailwind CSS for styling.
HTML Code
<div class="flex items-center justify-center min-h-screen p-6 bg-gray-100 dark:bg-gray-900">
<div class="w-full max-w-md bg-white dark:bg-gray-800 bg-opacity-60 dark:bg-opacity-30 backdrop-filter backdrop-blur-lg rounded-xl p-6 shadow-lg">
<h2 class="text-xl font-bold text-gray-800 dark:text-white mb-4">Progress</h2>
<div class="mb-4">
<div class="flex justify-between items-center mb-1">
<span class="text-base font-medium text-gray-700 dark:text-gray-300">Task Completion</span>
<span class="text-sm font-medium text-gray-700 dark:text-gray-300">75%</span>
</div>
<div class="w-full bg-gray-200 dark:bg-gray-700 rounded-full h-2.5">
<div class="bg-blue-600 h-2.5 rounded-full" style="width: 75%"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between items-center mb-1">
<span class="text-base font-medium text-gray-700 dark:text-gray-300">Resource Usage</span>
<span class="text-sm font-medium text-gray-700 dark:text-gray-300">50%</span>
</div>
<div class="w-full bg-gray-200 dark:bg-gray-700 rounded-full h-2.5">
<div class="bg-green-600 h-2.5 rounded-full" style="width: 50%"></div>
</div>
</div>
<div>
<div class="flex justify-between items-center mb-1">
<span class="text-base font-medium text-gray-700 dark:text-gray-300">Download Progress</span>
<span class="text-sm font-medium text-gray-700 dark:text-gray-300">90%</span>
</div>
<div class="w-full bg-gray-200 dark:bg-gray-700 rounded-full h-2.5">
<div class="bg-yellow-400 h-2.5 rounded-full" style="width: 90%"></div>
</div>
</div>
</div>
</div>
Related Components
3D Progress Bar Component
Styled with 3D effects, Tailwind CSS, responsive design, and dark mode support.
Progress Indicators Component
A minimalist progress indicator component designed to showcase portfolio progress using vibrant colors and responsive design with dark theme support.
Glassmorphism Progress Indicators Component
Glassmorphism Progress Indicators Component with Vibrant color scheme and Simple complexity.