mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
75 lines
1.4 KiB
HTML
75 lines
1.4 KiB
HTML
<div class="card">
|
|
<div class="card-front">
|
|
<p class="title">John Doe</p>
|
|
<p class="subtitle">Web Dev</p>
|
|
</div>
|
|
<div class="card-back">
|
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by alexruix - Tags: simple, gradient, card, hover, smooth, dark, about me */
|
|
.card {
|
|
color: #1b1b1b;
|
|
width: 190px;
|
|
height: 254px;
|
|
position: relative;
|
|
outline: 6px solid #f5f5f5;
|
|
border-radius: 8px;
|
|
line-height: 150%;
|
|
padding: 16px;
|
|
background: #ff930f;
|
|
background-blend-mode: multiply;
|
|
background: linear-gradient(to top, #ff930f, #ffcc33);
|
|
transition: background-color 1s ease-in-out;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-front {
|
|
bottom: 16px;
|
|
left: 0;
|
|
position: absolute;
|
|
width: 100%;
|
|
text-align: center;
|
|
transition: transform 1s cubic-bezier(0.785, 0.135, 0.150, 0.860);
|
|
}
|
|
|
|
.card-back {
|
|
transform: translateX(120%);
|
|
transition: transform 1s cubic-bezier(0.785, 0.135, 0.150, 0.860);
|
|
}
|
|
|
|
|
|
/*Text*/
|
|
.title {
|
|
font-size: 1.3rem;
|
|
font-weight: bold;
|
|
}
|
|
/*Text divider*/
|
|
.title::after {
|
|
content: "";
|
|
display: block;
|
|
width: 50%;
|
|
border-radius: 50%;
|
|
height: 2px;
|
|
margin: 2px auto;
|
|
background-color: #1b1b1b;
|
|
}
|
|
|
|
|
|
/*Hover*/
|
|
.card:hover {
|
|
background-color: #1b1b1b25;
|
|
}
|
|
|
|
.card:hover .card-front {
|
|
transform: translateX(-100%);
|
|
}
|
|
|
|
.card:hover .card-back {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
|
|
|
|
</style>
|