mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
92 lines
1.8 KiB
HTML
92 lines
1.8 KiB
HTML
<div class="card">
|
|
<div class="content">
|
|
<p class="heading">Card Hover Effect
|
|
</p><p class="para">
|
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Modi
|
|
laboriosam at voluptas minus culpa deserunt delectus sapiente
|
|
inventore pariatur
|
|
</p>
|
|
<button class="btn">Read more</button>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by gharsh11032000 - Tags: simple, gradient, card, hover effect */
|
|
.card {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 320px;
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
|
|
padding: 32px;
|
|
overflow: hidden;
|
|
border-radius: 10px;
|
|
transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 20px;
|
|
color: #e8e8e8;
|
|
transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
|
|
}
|
|
|
|
.content .heading {
|
|
font-weight: 700;
|
|
font-size: 32px;
|
|
}
|
|
|
|
.content .para {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.content .btn {
|
|
color: #e8e8e8;
|
|
text-decoration: none;
|
|
padding: 10px;
|
|
font-weight: 600;
|
|
border: none;
|
|
cursor: pointer;
|
|
background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
|
|
border-radius: 5px;
|
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.card::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 5px;
|
|
background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
|
|
z-index: -1;
|
|
transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
|
|
}
|
|
|
|
.card:hover::before {
|
|
height: 100%;
|
|
}
|
|
|
|
.card:hover {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.card:hover .btn {
|
|
color: #212121;
|
|
background: #e8e8e8;
|
|
}
|
|
|
|
.content .btn:hover {
|
|
outline: 2px solid #e8e8e8;
|
|
background: transparent;
|
|
color: #e8e8e8;
|
|
}
|
|
|
|
.content .btn:active {
|
|
box-shadow: none;
|
|
}
|
|
|
|
</style>
|