-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Joshua T Kalis
committed
Sep 20, 2024
1 parent
701907b
commit 79d66dd
Showing
24 changed files
with
414 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
.cicada { | ||
position: absolute; | ||
z-index: -1; | ||
|
||
&:after { | ||
--grad: linear-gradient( | ||
90deg, | ||
var(--teal) 0%, | ||
var(--teal) 10%, | ||
transparent 10%, | ||
transparent 20%, | ||
var(--magenta) 20%, | ||
var(--magenta) 30%, | ||
transparent 30%, | ||
transparent 40%, | ||
var(--gold) 40%, | ||
var(--gold) 50%, | ||
transparent 50%, | ||
transparent 60%, | ||
var(--green) 60%, | ||
var(--green) 70%, | ||
var(--pink) 70%, | ||
var(--pink) 80%, | ||
var(--purple) 80%, | ||
var(--purple) 90%, | ||
transparent 90% | ||
); | ||
|
||
background-color: var(--bg); | ||
background-image: var(--grad), var(--grad), var(--grad), var(--grad); | ||
background-blend-mode: darken, color-burn, multiply; | ||
background-size: 17%, 19%, 33%, 33%; | ||
content: ""; | ||
height: 100%; | ||
left: 0; | ||
position: fixed; | ||
top: 0; | ||
width: 100%; | ||
z-index: 0; | ||
} | ||
|
||
&:before { | ||
background-image: linear-gradient(180deg, transparent, var(--bg) 30%); | ||
box-shadow: inset 0 3em 3em 0 rgba(0, 0, 0, 0.2); | ||
content: ""; | ||
height: 100%; | ||
left: 0; | ||
position: fixed; | ||
top: 0; | ||
width: 100%; | ||
z-index: 1; | ||
} | ||
} |
Oops, something went wrong.