diff --git a/.github/workflows/auto-label-action.yml b/.github/workflows/auto-label-action.yml
index ab70d883..53d0efad 100644
--- a/.github/workflows/auto-label-action.yml
+++ b/.github/workflows/auto-label-action.yml
@@ -25,7 +25,5 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: |
- hacktoberfest
hacktoberfest-accepted
gssoc-ext
- gssoc-extd
\ No newline at end of file
diff --git a/README.md b/README.md
index 238bb628..451f0fc2 100644
--- a/README.md
+++ b/README.md
@@ -56,7 +56,11 @@ We welcome all contributions to improve **Collect Your GamingTools**! If you'd l
| **Swaraj Das**
Project Admin | **Anit Sarkar**
Maintainer |
| [![LinkedIn](https://img.icons8.com/fluency/32/000000/linkedin.png)](https://www.linkedin.com/in/swarajdas01/) | [![LinkedIn](https://img.icons8.com/fluency/32/000000/linkedin.png)](https://www.linkedin.com/in/anit-sarkar-11906a283/) |
+## 🙌 Contributors
+
+
+
diff --git a/SignUp/signup.css b/SignUp/signup.css
index f2f7510f..2d3fd0d2 100644
--- a/SignUp/signup.css
+++ b/SignUp/signup.css
@@ -1,11 +1,11 @@
* {
box-sizing: border-box;
margin: 0;
- padding: 0;
+ padding:5px;
}
body {
- background: url('https://www.example.com/path/to/your/gaming-background.jpg') no-repeat center center fixed;
+ background: url('https://images.pexels.com/photos/7135057/pexels-photo-7135057.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center fixed;
background-size: cover;
font-family: 'Trebuchet MS', Arial, sans-serif;
display: flex;
@@ -17,23 +17,28 @@ body {
}
.signup-container {
- background-color: rgba(0, 0, 0, 0.8);
- padding: 2rem;
- border-radius: 15px;
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
+
+ opacity: 0.75;
+ background-color: rgba(0, 0, 0, 0);
+ padding: 5rem;
+ border-radius: 20px;
+ box-shadow: 0 0px 0px rgba(0, 0, 0, 0.5);
text-align: center;
- max-width: 400px;
+ max-width: 500px;
width: 100%;
- animation: fadeIn 1.5s ease-in-out;
+ animation: fadeIn 2s ease-in-out;
+ background-color: black;
+ margin: auto;
}
+
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.9);
}
to {
- opacity: 1;
+ opacity: 0.75;
transform: scale(1);
}
}
@@ -73,20 +78,62 @@ input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focu
}
.signup-button {
- background-color: #ba68c8;
- color: #282c34;
- padding: 0.75rem 1.5rem;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- font-family: 'Press Start 2P', cursive;
- font-size: 18px;
- transition: background-color 0.3s, transform 0.3s;
+ color:white;
+ font-family:Helvetica, sans-serif;
+ font-weight:bold;
+ font-size:20px;
+ text-align: center;
+ background-color:#FFA12B;
+ display:block;
+ position:relative;
+ padding:15px 60px;
+ margin: auto;
+
+
+
+
+ cursor: pointer;
+ transition: background-color 0.2s, color 0.2s;
+
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+ text-shadow: 0px 1px 0px #000;
+ filter: dropshadow(color=#000, offx=0px, offy=1px);
+
+ -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
+ -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
+ box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
+
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
}
-.signup-button:hover {
- background-color: #ab47bc;
- transform: scale(1.05);
+.signup-button:active{
+ top:10px;
+ background-color:#F78900;
+
+ -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
+ -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
+ box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
+}
+.signup-button:after{
+ content:"";
+ height:100%;
+ width:100%;
+ padding:4px;
+ position: absolute;
+ bottom:-15px;
+ left:-4px;
+ z-index:-1;
+ background-color:#2B1800;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+}
+.signup-button:hover{
+ background-color: #FFD198;
+ color: #F78900;
+
}
.links {
@@ -104,3 +151,4 @@ input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focu
color: #ff80ab;
text-decoration: underline;
}
+
diff --git a/SignUp/signup.html b/SignUp/signup.html
index ce911481..296a08da 100644
--- a/SignUp/signup.html
+++ b/SignUp/signup.html
@@ -30,7 +30,7 @@