mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
23 lines
611 B
HTML
23 lines
611 B
HTML
<div class="card"></div>
|
|
<style>
|
|
/* From Uiverse.io by SteveBloX - Tags: white, card, hover, active, claymorphism */
|
|
.card {
|
|
width: 190px;
|
|
height: 254px;
|
|
backdrop-filter: blur(7px);
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
border-radius: 26px;
|
|
box-shadow: 35px 35px 68px 0px rgba(157, 177, 255, 0.2), inset -8px -8px 16px 0px rgba(157, 177, 255, 0.6), inset 0px 11px 28px 0px rgb(255, 255, 255);
|
|
transition: all 0.3s;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.card:hover {
|
|
box-shadow: 35px 35px 68px 0px rgba(157, 177, 255, 0.5);
|
|
}
|
|
|
|
.card:active {
|
|
transform: scale(0.95);
|
|
border: 1px solid blue;
|
|
}
|
|
</style>
|