mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
26 lines
No EOL
628 B
HTML
26 lines
No EOL
628 B
HTML
<div class="container"></div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by SmookyDev - Tags: glassmorphism, animation, transition, css, css effect, pattern */
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(
|
|
45deg,
|
|
white 12%,
|
|
transparent 0,
|
|
transparent 88%,
|
|
wheat 0
|
|
),
|
|
linear-gradient(135deg, transparent 37%, #753 0, #753 63%, transparent 0),
|
|
linear-gradient(45deg, transparent 37%, white 0, white 63%, transparent 0)
|
|
wheat;
|
|
background-size: 80px 80px;
|
|
animation: ani 10s linear infinite;
|
|
position: relative;
|
|
z-index: 10;
|
|
overflow: hidden;
|
|
}
|
|
|
|
</style>
|
|
|