mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
15 lines
554 B
HTML
15 lines
554 B
HTML
<div class="container"></div>
|
|
<style>
|
|
/* From Uiverse.io by uiverse-astronaut - Tags: pink, pattern, stripes */
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
--color: #faa7d8;
|
|
background: linear-gradient(45deg, var(--color) 25%, transparent 25%) -50px 0,
|
|
linear-gradient(-45deg, var(--color) 25%, transparent 25%) -50px 0,
|
|
linear-gradient(45deg, transparent 75%, var(--color) 75%) -50px 0,
|
|
linear-gradient(-45deg, transparent 75%, var(--color) 75%) -50px 0;
|
|
background-color: #e5e5f7;
|
|
background-size: 10px 40px;
|
|
}
|
|
</style>
|