mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
15 lines
384 B
HTML
15 lines
384 B
HTML
|
|
<div class="card"></div>
|
|
<style>
|
|
/* From Uiverse.io by e-coders - Tags: gradient, card */
|
|
.card {
|
|
width: 190px;
|
|
height: 254px;
|
|
background: linear-gradient(135deg, #ff85ec 0%, #84ff98 100%);
|
|
border-radius: 16px;
|
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
</style>
|