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 +
+ Pratik Joshi +
+ Vaibhav @@ -538,6 +545,8 @@ Steps to contribute in this repository Anuj Agrawal + + DhruviThakkar210/ @@ -545,8 +554,6 @@ Steps to contribute in this repository DhruviThakkar210 - - GAURAB/ @@ -582,6 +589,8 @@ Steps to contribute in this repository Mohammad Palla + + NishakarKT/ @@ -589,8 +598,6 @@ Steps to contribute in this repository NishakarKT - - Rahul @@ -626,6 +633,8 @@ Steps to contribute in this repository Skand Sharma + + Subham @@ -633,8 +642,6 @@ Steps to contribute in this repository Subham Kumar Mohapatra - - Tusshar @@ -663,13 +670,6 @@ Steps to contribute in this repository VirtualGhost00 - - - Pratik -
- Pratik Joshi -
- Nipun 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