mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
23 lines
No EOL
449 B
HTML
23 lines
No EOL
449 B
HTML
<div class="container"></div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by escannord - Tags: simple, blue, plus, pattern */
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
/* Add your background pattern here */
|
|
background: rgb(57, 59, 59);
|
|
background: radial-gradient(
|
|
circle at 50%,
|
|
rgb(41, 39, 39),
|
|
#333 50%,
|
|
transparent 51%,
|
|
#eee 10%,
|
|
rgb(0, 0, 0) 55% 72%,
|
|
rgb(15, 96, 189) 50%
|
|
);
|
|
background-size: 10px 10px;
|
|
}
|
|
|
|
</style>
|
|
|