From edc8589d1d778cf3c665dfa25e3318724b5ea37b Mon Sep 17 00:00:00 2001 From: zyqunix Date: Sun, 1 Dec 2024 09:42:32 +0100 Subject: [PATCH] a --- projects/projects.json | 6 ------ scrolling test/index.html | 20 ++++++++++++++++++++ scrolling test/style.css | 40 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 6 deletions(-) create mode 100644 scrolling test/index.html create mode 100644 scrolling test/style.css diff --git a/projects/projects.json b/projects/projects.json index adf3591..be80a16 100644 --- a/projects/projects.json +++ b/projects/projects.json @@ -29,12 +29,6 @@ "description": "An app with Flashcards; more widgets coming soon. Name means 'MyWidget'.", "url": "https://github.com/zyqunix/MyWig" }, - { - "name": "Equicord", - "subheader": "Discord Client Modification", - "description": "A fork of Equicord that includes more plugins and other stuff.", - "url": "https://github.com/zyqunix/Unexpected-Keyboard" - }, { "name": "AutoClicker", "subheader": "A C# AutoClicker", diff --git a/scrolling test/index.html b/scrolling test/index.html new file mode 100644 index 0000000..e139cda --- /dev/null +++ b/scrolling test/index.html @@ -0,0 +1,20 @@ + + + + + + Test + + + +
+ + + +
+ +
+ hello world +
+ + \ No newline at end of file diff --git a/scrolling test/style.css b/scrolling test/style.css new file mode 100644 index 0000000..fb41bc3 --- /dev/null +++ b/scrolling test/style.css @@ -0,0 +1,40 @@ +body { + background-color: #202020; + color: white; + margin: 0; + font-size: large; + font-family: monospace; + overflow: hidden; +} + +marquee { + padding: 20px 0px 20px 0px; + animation: transparent-edges infinite linear 0s; +} + +@keyframes transparent-edges { + 0% { + background-color: rgba(0, 0, 0, 0); + } + + 10% { + background-color: rgba(0, 0, 0, 1); + } + + 90% { + background-color: rgba(0, 0, 0, 1); + } + + 100% { + background-color: rgba(0, 0, 0, 0); + } +} + +.fun { + display: flex; + justify-content: center; + max-width: 300px; + padding: 30px 60px 30px 60px; + background-color: #404040; + animation: transparent-edges 5s infinite; +}