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
-
- |
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
|