mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
14 lines
447 B
HTML
14 lines
447 B
HTML
<div class="container"></div>
|
|
<style>
|
|
/* From Uiverse.io by uiverse-astronaut - Tags: dots, pattern, polka dots */
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
/* Add your background pattern here */
|
|
background-color: #e5e5f7;
|
|
background-image: radial-gradient(#444cf7 10%, transparent 10%),
|
|
radial-gradient(#444cf7 10%, transparent 10%);
|
|
background-size: 100px 100px;
|
|
background-position: 0 0, 50px 50px;
|
|
}
|
|
</style>
|