Rating System Component
A rating system component designed in a retro/vintage style, utilizing a complementary color scheme and a complex interface for blog content. This component supports dark mode and is responsive using Tailwind CSS.
HTML Code
<div class="max-w-md mx-auto bg-gray-50 dark:bg-gray-800 rounded-lg shadow-lg p-6 mt-10">
<h2 class="text-center text-2xl font-bold text-gray-800 dark:text-gray-200 mb-4">Rate Our Content</h2>
<div class="flex items-center justify-center mb-6">
<img src="https://picsum.photos/60/60" alt="Blog Post" class="rounded-full border-2 border-blue-500 mr-3">
<div>
<p class="text-lg text-gray-700 dark:text-gray-300">Fantastic Blog Post Title</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Published on January 1, 2023</p>
</div>
</div>
<div class="flex justify-center mb-6">
<span class="text-yellow-400">★</span>
<span class="text-yellow-400">★</span>
<span class="text-yellow-400">★</span>
<span class="text-yellow-400">★</span>
<span class="text-gray-300">★</span>
</div>
<textarea class="w-full h-24 p-3 border border-blue-400 rounded-lg dark:bg-gray-700 dark:border-gray-600 dark:text-gray-200" placeholder="Leave your feedback here..."></textarea>
<button class="w-full mt-3 py-2 bg-blue-500 hover:bg-blue-600 text-white rounded-lg transition duration-300">Submit Rating</button>
<div class="flex items-center justify-between mt-4 text-gray-700 dark:text-gray-300">
<span>👍 120 Likes</span>
<span>💔 5 Dislikes</span>
</div>
</div>
Related Components
Rating System Component
A responsive Rating System Component with dark theme support, designed in a Minimalist/Flat style with a Pastel color scheme for social media interfaces. It is a complex component with multiple interactive elements.
Rating System Component
A glassmorphic styled rating system component suitable for portfolio showcasing work or products, with responsive design and dark theme support.
Rating System Component
A complex, retro-themed rating system component for social media, featuring a monochromatic color scheme. It's fully responsive and supports a dark mode. This component uses only HTML and Tailwind CSS, with no JavaScript.