mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
63 lines
1.2 KiB
HTML
63 lines
1.2 KiB
HTML
<div class="card">
|
|
<div class="card-image"></div>
|
|
<div class="card-description">
|
|
<p class="text-title"> Card Title</p>
|
|
<p class="text-body">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</p>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by alexruix - Tags: gradient, card, modern, clean */
|
|
.card {
|
|
height: 254px;
|
|
width: 190px;
|
|
position: relative;
|
|
transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
border-radius: 16px;
|
|
box-shadow: 0 0 20px 8px #d0d0d0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/*Image*/
|
|
.card-image {
|
|
height: 100%;
|
|
width: 100%;
|
|
position: absolute;
|
|
transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
background: #0a3394;
|
|
background: linear-gradient(to top, #0a3394, #4286f4);
|
|
}
|
|
|
|
/*Description */
|
|
.card-description {
|
|
display: flex;
|
|
position: absolute;
|
|
gap: .5em;
|
|
flex-direction: column;
|
|
background-color: #f5f5f5;
|
|
color: #212121;
|
|
height: 70%;
|
|
bottom: 0;
|
|
border-radius: 16px;
|
|
transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
padding: 1rem;
|
|
}
|
|
|
|
/*Text*/
|
|
.text-title {
|
|
font-size: 1.3rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.text-body {
|
|
font-size: 1rem;
|
|
line-height: 130%;
|
|
}
|
|
|
|
|
|
/* Hover states */
|
|
.card:hover .card-description {
|
|
transform: translateY(100%);
|
|
}
|
|
|
|
|
|
</style>
|