From 44a0b82f7584bb85598bda1dffb7a95dbb3a217b Mon Sep 17 00:00:00 2001 From: Grace Abike Date: Thu, 25 Aug 2022 15:15:24 +0200 Subject: [PATCH 1/2] Add clone of https://github.com/NatanimA/Microverse-Portfolio-Project repo --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..cbb7b3a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5502 +} \ No newline at end of file From 54b5631ba2868cf7164a93594bb6b54228270da6 Mon Sep 17 00:00:00 2001 From: Grace Abike Date: Thu, 25 Aug 2022 15:32:04 +0200 Subject: [PATCH 2/2] Add Animation to h1 header --- css/style.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/css/style.css b/css/style.css index 6b37579..8569a3e 100644 --- a/css/style.css +++ b/css/style.css @@ -720,4 +720,18 @@ textarea::placeholder { height: 48px; align-self: center; } + + h1.header { + animation: heading 3s linear; + position: relative; + } + @keyframes heading { + from { + left: 0; + } + + to { + left: 100%; + } + } }