mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
21 lines
No EOL
590 B
HTML
21 lines
No EOL
590 B
HTML
<div class="container"></div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by alexruix - Tags: simple, green, arrow, pattern */
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
/* Add your background pattern here */
|
|
--size: 80px; /* control the size */
|
|
--color: #fefae0;
|
|
|
|
--l: var(--color) 20%, #0000 0;
|
|
--bg: 35%, #606c38 0 45%, var(--color) 0;
|
|
background: linear-gradient(45deg, var(--l) 45%, var(--color) 0 70%, #0000 0),
|
|
linear-gradient(-45deg, var(--l) var(--bg) 70%, #0000 0),
|
|
linear-gradient(45deg, var(--color) var(--bg));
|
|
background-size: var(--size) var(--size);
|
|
}
|
|
|
|
</style>
|
|
|