mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
22 lines
No EOL
379 B
HTML
22 lines
No EOL
379 B
HTML
<div class="container"></div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by 16alves02 - Tags: red, green, css, pattern */
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(
|
|
to right,
|
|
#289a6a 0%,
|
|
#289a6a 30%,
|
|
#ffcd00 30%,
|
|
#ffcd00 70%,
|
|
#ef3340 70%,
|
|
#ef3340 100%
|
|
);
|
|
background-size: 120px 100%;
|
|
background-repeat: repeat;
|
|
}
|
|
|
|
</style>
|
|
|