Skip to content

Commit

Permalink
add secondary dots to background
Browse files Browse the repository at this point in the history
  • Loading branch information
ccaven committed Jul 16, 2023
1 parent 1858e15 commit 2127cea
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
-->

<div id="background" class="absolute w-full h-full"></div>
<div id="background-2" class="absolute w-full h-full"></div>
<div id="background-3" class="absolute w-full h-full"></div>

<CodeEditor/>

Expand All @@ -20,4 +22,22 @@
z-index: -100;
position: fixed
}
#background-2 {
background-image: radial-gradient(lightgray 0.5px, transparent 0);
background-size: 20px 20px;
background-position: -29px -19px;
transform: rotate(30deg) scale(2);
z-index: -100;
position: fixed
}
#background-3 {
background-image: radial-gradient(lightgray 0.5px, transparent 0);
background-size: 20px 20px;
background-position: -19px -29px;
transform: rotate(30deg) scale(2);
z-index: -100;
position: fixed
}
</style>

0 comments on commit 2127cea

Please sign in to comment.