mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
25 lines
647 B
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>
|