From 186bd42c14d2bab7601df14370e472d4cbc23d6d Mon Sep 17 00:00:00 2001 From: Squirrel-314 Date: Wed, 13 Jan 2021 19:13:19 -0500 Subject: [PATCH] more Things! --- index.html | 6 +++--- styles.css | 19 +++++++++++++------ 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 5cd3018..e68f0db 100644 --- a/index.html +++ b/index.html @@ -19,12 +19,12 @@

I am not a web developer, but I do spend a lot time programming. I like CSS transitions and I think everyone should use them. I know HTML, CSS, JavaScript, and Electron, and am currently in the process of learing React and Node. Linux is my faviorite OS (I use Kubuntu, looking into Deepin). You can see my GitHub account here, and check out all the organizations I am in alone. Like my repositories? Please put up issues for any mistakes, and if you have a suggestion, also make an issue. No, I didn't mean it that way, it's just eaisier for me to see.

- -
- +
+ hi
diff --git a/styles.css b/styles.css index d96b429..16c85a0 100644 --- a/styles.css +++ b/styles.css @@ -48,22 +48,29 @@ Common Classes } .arrow { - animation: nudge 5s linear infinite; + animation: nudge 3s linear infinite; transition: .2s; + transform: scale(1); } @keyframes nudge { 0% { margin-right: 0px; - transform: scale(1); } - 0% { + 20% { margin-right: -8px; - transform: scale(1.2); } - 0% { + 40% { + margin-right: 0px; + } + 60% { + margin-right: -8px; + } + 80% { + margin-right: 0px; + } + 100% { margin-right: 0px; - transform: scale(1); } }