mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
18 lines
373 B
HTML
18 lines
373 B
HTML
<div class="container"></div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by vnuny - Tags: simple, pink, circle, pattern */
|
|
.container {
|
|
background-color: #e5e5f7;
|
|
opacity: 1;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: repeating-radial-gradient(
|
|
circle at 0 0,
|
|
transparent 0,
|
|
#e5e5f7 30px
|
|
),
|
|
repeating-linear-gradient(#ffb5b58a, #ffb8b8);
|
|
}
|
|
|
|
</style>
|