mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
23 lines
391 B
HTML
23 lines
391 B
HTML
|
|
<div class="card"></div>
|
|
<style>
|
|
/* From Uiverse.io by SharpTH - Tags: card */
|
|
.card {
|
|
cursor: pointer;
|
|
width: 190px;
|
|
height: 254px;
|
|
background: rgb(255, 255, 255);
|
|
border-radius: 5px;
|
|
border: 1px solid rgba(0, 0, 255, .2);
|
|
transition: all .2s;
|
|
box-shadow: 12px 12px 2px 1px rgba(0, 0, 255, .2);
|
|
}
|
|
|
|
.card:hover {
|
|
box-shadow: -12px 12px 2px -1px rgba(0, 0, 255, .2);
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|