diff options
author | Dante Catalfamo | 2025-01-08 19:02:07 -0500 |
---|---|---|
committer | Dante Catalfamo | 2025-01-08 19:02:07 -0500 |
commit | 66292c0e95236a024f61439465d8992ebfb49b1f (patch) | |
tree | ff0645114eb45ac1a2d3b1e4b64fe5b9f95d0a60 /public/style.css | |
parent | 428b349e7ededbfa8ed49d4ed16f30e5f510f519 (diff) | |
download | homepage-66292c0e95236a024f61439465d8992ebfb49b1f.tar.gz homepage-66292c0e95236a024f61439465d8992ebfb49b1f.tar.bz2 homepage-66292c0e95236a024f61439465d8992ebfb49b1f.zip |
Add trail
Diffstat (limited to 'public/style.css')
-rw-r--r-- | public/style.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/public/style.css b/public/style.css index fd93835..c87c349 100644 --- a/public/style.css +++ b/public/style.css @@ -45,3 +45,24 @@ body { display: block; } } +/* Char trail */ +#chars { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; +} +.chr { + position: absolute; + user-select: none; + font-family: monospace, monospace; + color: #00000000; + animation-name: fade; + animation-duration: 2s; +} + +@keyframes fade { + from { color: limegreen; } + to { color: #00000000 } +} |