mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
20 lines
412 B
HTML
20 lines
412 B
HTML
<div class="card shadow">
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by absoluteSTrange - Tags: card */
|
|
.card {
|
|
width: 190px;
|
|
height: 254px;
|
|
background: white;
|
|
border-radius: 10px;
|
|
transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
}
|
|
|
|
.shadow {
|
|
box-shadow: inset 0 -3em 3em rgba(0,0,0,0.1),
|
|
0 0 0 2px rgb(190, 190, 190),
|
|
0.3em 0.3em 1em rgba(0,0,0,0.3);
|
|
}
|
|
|
|
|
|
</style>
|