From 6eca81ea1ed84ec434ff457abf04e4330cd06f86 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 19 Oct 2022 20:43:36 +0000
Subject: [PATCH 1/5] docs(README): update contributors
---
README.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index baa99207..2e893fd1 100644
--- a/README.md
+++ b/README.md
@@ -188,9 +188,9 @@ Steps to contribute in this repository
-
+
- ARYAN-CODES-STAR
+ Aryan Sharma
|
@@ -644,9 +644,9 @@ Steps to contribute in this repository
-
+
- vatsalya1102
+ Vatsalya Sharma
|
From ba34ac86ac16d2d449cd0a00b42efcfd7305f435 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sat, 22 Oct 2022 20:42:07 +0000
Subject: [PATCH 2/5] docs(README): update contributors
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 2e893fd1..f605206f 100644
--- a/README.md
+++ b/README.md
@@ -137,9 +137,9 @@ Steps to contribute in this repository
|
-
+
- Sahil Sharma
+ youknowme
|
From 4070bb1487d14a05a060479033b5da9386db1d24 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 23 Oct 2022 20:42:27 +0000
Subject: [PATCH 3/5] docs(README): update contributors
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index f605206f..7b43de48 100644
--- a/README.md
+++ b/README.md
@@ -350,9 +350,9 @@ Steps to contribute in this repository
|
-
+
- vipulkumar49
+ Vipul Kumar
|
From fe0adb041720ac0822841f62dddf14e3ab939a93 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 25 Oct 2022 10:23:59 +0000
Subject: [PATCH 4/5] docs(README): update contributors
---
README.md | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/README.md b/README.md
index 7b43de48..bd42f3df 100644
--- a/README.md
+++ b/README.md
@@ -503,6 +503,13 @@ Steps to contribute in this repository
|
+
+
+
+
+ Pratik Joshi
+
+ |
@@ -538,6 +545,8 @@ Steps to contribute in this repository
Anuj Agrawal
|
+
+
@@ -545,8 +554,6 @@ Steps to contribute in this repository
DhruviThakkar210
|
-
-
@@ -582,6 +589,8 @@ Steps to contribute in this repository
Mohammad Palla
|
+
+
@@ -589,8 +598,6 @@ Steps to contribute in this repository
NishakarKT
|
-
-
@@ -626,6 +633,8 @@ Steps to contribute in this repository
Skand Sharma
|
+
+
@@ -633,8 +642,6 @@ Steps to contribute in this repository
Subham Kumar Mohapatra
|
-
-
@@ -663,13 +670,6 @@ Steps to contribute in this repository
VirtualGhost00
|
-
-
-
-
- Pratik Joshi
-
- |
From 29df5f05291b25fe330d62689230228f062271ce Mon Sep 17 00:00:00 2001
From: pjoshi1616
Date: Tue, 25 Oct 2022 15:57:36 +0530
Subject: [PATCH 5/5] codeX1616-CSS for button animation
---
Simple CSS Animation/style.css | 36 ++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
create mode 100644 Simple CSS Animation/style.css
diff --git a/Simple CSS Animation/style.css b/Simple CSS Animation/style.css
new file mode 100644
index 00000000..a9464cfd
--- /dev/null
+++ b/Simple CSS Animation/style.css
@@ -0,0 +1,36 @@
+*{
+ background-color: white;
+}
+
+.wrapper{
+ display: flex;
+ align-items: center;
+ justify-content: space-evenly;
+ text-align: center;
+ min-height: 100vh;
+ flex-direction: row;
+}
+
+.button{
+ width: 400px;
+ height: 100px;
+ border: none;
+ color: white;
+ border: none;
+ text-align: center;
+ background-color: black;
+ border-radius: 6px;
+ outline: none;
+ justify-content: center;
+ transition: ease-out 0.3s;
+ font-size: 3rem;
+ box-shadow: inset 0 0 0 0 white;
+ padding-top: 30px;
+}
+
+.button:hover {
+ transition: ease-out 0.3s;
+ box-shadow: inset 400px 0 0 0 white;
+ color: black;
+ cursor: pointer;
+}
\ No newline at end of file
|