diff options
author | Anthony Wang | 2024-01-29 02:34:01 -0500 |
---|---|---|
committer | Anthony Wang | 2024-01-29 02:34:01 -0500 |
commit | bf7131f7b2b529ab591235d738e98cf1f90ab864 (patch) | |
tree | 6a7b19b4fd3b350cbcef59b7f5f4fff6aeaf0729 /style.css |
PHYSICS
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..fe2652d --- /dev/null +++ b/style.css @@ -0,0 +1,45 @@ +body { +/* background-image: url("catgirl.png"); */ + background-size: auto 100vh; + background-position: center; + background-repeat: no-repeat; + background-attachment: fixed; + touch-action: manipulation; +} + +@keyframes color { + 10% { + color: #a43535; + } + 20% { + color: #ff7b00; + } + 30% { + color: #ffff51; + } + 40% { + color: #a7ff4e; + } + 50% { + color: #7addfe; + } + 60% { + color: #6b6bfd; + } + 70% { + color: #ca61ff; + } + 80% { + color: #ff54af; + } + 90% { + color: #f3bbff; + } +} + +svg { + color: #f3bbff; + font-size: 240px; + animation: color 10s infinite linear; + position: absolute; +} |