mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
20 lines
No EOL
359 B
HTML
20 lines
No EOL
359 B
HTML
<div class="container"></div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by ArnavK-09 - Tags: simple, white, black, css, pattern, notebook, lines */
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: repeating-linear-gradient(
|
|
0deg,
|
|
black,
|
|
1px,
|
|
white 1px,
|
|
white
|
|
);
|
|
background-size: 100% 30px;
|
|
background-color: white;
|
|
}
|
|
|
|
</style>
|
|
|