mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
43 lines
737 B
HTML
43 lines
737 B
HTML
<div class="card">
|
|
<div></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Vikikos - Tags: card */
|
|
.card {
|
|
width: 190px;
|
|
height: 254px;
|
|
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.212);
|
|
background: #fff;
|
|
display: flex;
|
|
border-radius: 20px;
|
|
justify-content: center;
|
|
position: relative;
|
|
transition: all .4s;
|
|
}
|
|
|
|
.card::before {
|
|
content: '---content---';
|
|
letter-spacing: 0.2em;
|
|
position: absolute;
|
|
bottom: 8px;
|
|
left: 20px;
|
|
color: rgb(51, 51, 51);
|
|
font-size: 0.8em;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.card div {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 20px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.212);
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
transition: all .4s;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.card:hover div {
|
|
transform: translateY(-30px);
|
|
}
|
|
</style>
|