mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
27 lines
563 B
HTML
27 lines
563 B
HTML
<div class="card">Hover me</div>
|
|
<style>
|
|
/* From Uiverse.io by Cornerstone-04 - Tags: card */
|
|
.card {
|
|
width: 160px;
|
|
height: 200px;
|
|
background: #ffffff;
|
|
transform: rotate(20deg) skew(-10deg, -5deg);
|
|
transition: .4s linear;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
line-height: 200px;
|
|
}
|
|
|
|
.card:hover {
|
|
box-shadow: rgba(0,0,0,0.5) 5px 3px,
|
|
rgba(0,0,0,0.4) 10px 6px,
|
|
rgba(0,0,0,0.3) 15px 9px;
|
|
background: #000;
|
|
color: #fff;
|
|
font-size: 1.5rem;
|
|
}
|
|
</style>
|