mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
21 lines
440 B
HTML
21 lines
440 B
HTML
<div class="card">
|
|
<div class="card__content">
|
|
</div></div>
|
|
<style>
|
|
/* From Uiverse.io by adamgiebl - Tags: card */
|
|
.card {
|
|
width: 190px;
|
|
height: 254px;
|
|
border-radius: 20px;
|
|
padding: 5px;
|
|
box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
|
|
background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
|
|
}
|
|
|
|
.card__content {
|
|
background: rgb(5, 6, 45);
|
|
border-radius: 17px;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|