mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
19 lines
423 B
HTML
19 lines
423 B
HTML
|
|
<div class="card"></div>
|
|
<style>
|
|
/* From Uiverse.io by bhaveshxrawat - Tags: card */
|
|
.card {
|
|
width: 190px;
|
|
height: 254px;
|
|
background: linear-gradient(145deg, #2B86C5 0%, #FF3CAC 100%);
|
|
border-radius: 5px;
|
|
box-shadow: 10px 10px 9px #c5c5c5,
|
|
-10px -10px 9px #ffffff;
|
|
transition: box-shadow 0.7s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
box-shadow: 10px 10px 15px #c5c5c5,
|
|
-10px -10px 15px #ffffff;
|
|
}
|
|
</style>
|