Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Sign up button & made Responsive #256

Merged
merged 4 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ A <b> responsive and dynamic website </b> to showcase the best gaming accessorie

## 🚀 Demo
#### Check out the live demo here ⬇️ :

https://collect-your-gamingtools.netlify.app/




## 🛠️ Installation
#### To get started, simply clone the repository and open it in your browser:

Expand Down
87 changes: 60 additions & 27 deletions SignUp/signup.css
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
* {
box-sizing: border-box;
margin: 0;
padding: 5px;

box-sizing: border-box;
margin: 0;
padding:0;
}

body {
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;
justify-content: center;
align-items: center;
height: 100vh;
color: white;
text-shadow: 1px 1px 2px #000;
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;
flex-direction: column;
justify-content: start;
align-items: start;
height: 100vh;
color: white;
text-shadow: 1px 1px 2px #000;
}

.signup-container {
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: 500px;
width: 100%;
animation: fadeIn 2s ease-in-out;
background-color: black;
margin: auto;

opacity: 0.75;
background-color: rgba(0, 0, 0, 0);
padding:3rem 5rem;
border-radius: 20px;
box-shadow: 0 0px 0px rgba(0, 0, 0, 0.5);
text-align: center;
max-width: 500px;
width: 100%;
animation: fadeIn 2s ease-in-out;
background-color: black;
margin: auto;
}

@keyframes fadeIn {
Expand All @@ -43,9 +45,9 @@ body {
}

h1 {
margin-bottom: 2rem;
font-size: 1.5rem;
color: #fb5283;
margin-bottom: 1.5rem;
font-size: 1.5rem;
color: #fb5283;
}

.input-group {
Expand Down Expand Up @@ -225,3 +227,34 @@ input[type="password"]:focus {
a {
text-decoration: none;
}

#link-home{
border: 1px solid rgb(255, 255, 255);
box-shadow: 0 0 5px white;
border-radius: 15px;
padding: 8px 15px;

margin-left: 1rem;
margin-top: 1rem;

}

#link-home:hover{
border: 1px solid rgb(202, 202, 202);
box-shadow: 0 0 5px #424242;
background-color: #42424222;
border-radius: 15px;
padding: 8px 15px;

margin-left: 1rem;
margin-top: 1rem;
}

#link-home a{
text-decoration: none;
color: #fff;
font-size: 1.4rem;
text-shadow: none;
font-family: 'Trebuchet MS', Arial, sans-serif;

}
8 changes: 5 additions & 3 deletions SignUp/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
<link rel="shortcut icon" href="../images/logo.png" type="image/x-icon">
</head>
<body>
<div class="linksHome">
<a href="../index.html">←Back</a>
</div>

<span id="link-home" class="linksHome">
<a href="../index.html">Home</a>
</span>

<div class="signup-container">
<h1>Create Your Account</h1>
<form action="#" method="post">
Expand Down