mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
22 lines
No EOL
596 B
HTML
22 lines
No EOL
596 B
HTML
<!-- From Uiverse.io by mvykool - Tags: gradient, card, card hover -->
|
|
<div
|
|
class="transform transition duration-300 hover:scale-110 rounded-lg shadow-lg h-52 w-56 hover:shadow-xl bg-white"
|
|
>
|
|
<div
|
|
class="bg-gradient-to-br from-rose-100 via-purple-200 to-purple-200 m-2 h-3/6 rounded-lg"
|
|
></div>
|
|
|
|
<div class="px-5 pt-2 flex flex-col">
|
|
<h2 class="font-semibold">Title</h2>
|
|
|
|
<button
|
|
class="bg-blue-500 cursor-pointer text-white px-2 py-1 mt-2 rounded-md transition duration-150 hover:bg-blue-700"
|
|
type="button"
|
|
>
|
|
Button
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|