mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
21 lines
478 B
HTML
21 lines
478 B
HTML
|
|
<div class="card"></div>
|
|
<style>
|
|
/* From Uiverse.io by TimTrayler - Tags: card */
|
|
.card {
|
|
width: 200px;
|
|
height: 260px;
|
|
background-color: #212121;
|
|
box-shadow: 15px 15px 30px #191919,
|
|
-15px -15px 30px #292929;
|
|
transition: border-radius cubic-bezier(0.075, 0.82, 0.165, 1) 1s,
|
|
transform cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
|
|
}
|
|
|
|
.card:hover {
|
|
border-bottom-right-radius: 50px;
|
|
border-top-left-radius: 50px;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
</style>
|