Success Messages Component
A 3D Design style success messages component featuring responsive effects and dark theme support, with placeholders for images and avatars.
HTML Code
<div class="flex flex-col items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
<div class="bg-white dark:bg-gray-800 shadow-lg rounded-lg p-6 max-w-md w-full transform transition-transform hover:scale-105">
<div class="flex items-center space-x-4">
<img src="https://picsum.photos/60/60" alt="Avatar" class="w-14 h-14 rounded-full shadow-md">
<div class="flex-1">
<h2 class="text-lg font-semibold text-gray-800 dark:text-gray-200">Success!</h2>
<p class="text-gray-600 dark:text-gray-300">Your operation was completed successfully.</p>
</div>
</div>
<div class="mt-4 space-x-2">
<a href="#" class="inline-block px-4 py-2 text-sm font-medium text-white bg-blue-600 rounded-md shadow hover:bg-blue-500 transition duration-300">Okay</a>
<a href="#" class="inline-block px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-gray-200 dark:bg-gray-700 rounded-md shadow hover:bg-gray-300 dark:hover:bg-gray-600 transition duration-300">Dismiss</a>
</div>
</div>
</div>
Related Components
Success Messages Component
A responsive success messages component inspired by Material Design with Earth tones and dark theme support, designed for content consumption.
SuccessMessagesComponent
A simple success message component for e-commerce, with a monochromatic Material Design aesthetic, responsive layout, and dark theme support.
Neumorphic_Charity_Success_Message
A simple, responsive success message component designed with a soft neumorphic style and a monochromatic color scheme, suitable for non-profit and charity organizations. Includes dark mode support.