galaxy/Cards/ercnersoy_serious-skunk-43.html

25 lines
647 B
HTML

<div class="card">My Card</div>
<style>
/* From Uiverse.io by ercnersoy - Tags: card */
.card {
width: 190px;
height: 254px;
background: lightgrey;
border: 3px inset white;
background: #e8e8e8;
box-shadow: inset 20px 20px 60px #c5c5c5, inset -20px -20px 60px #ffffff;
transition: all .5s ease-in-out;
border-radius: 1.5rem;
display: flex;
justify-content: center;
align-items: center;
font-weight: bolder;
color: #8a8989;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.card:hover {
transform: translateY(-5px);
transition: all .5s ease-in-out;
}
</style>