Skip to content

Commit

Permalink
made some tweaks to Signup.css
Browse files Browse the repository at this point in the history
  • Loading branch information
IshayuR committed Nov 24, 2024
1 parent b34e47f commit c1e1e76
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 40 deletions.
55 changes: 15 additions & 40 deletions Frontend/react-app-team51/src/styles/Signup.css
Original file line number Diff line number Diff line change
@@ -1,60 +1,35 @@
/* Signup.css */
/* Adjust the overall body styling */
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #ffffff; /* White background */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Change the font here */
}

/* Update the signup container for centering */
.signup-container {
max-width: 450px;
margin: 0 auto;
padding: 2rem;
border-radius: 10px;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
text-align: center;
font-family: Arial, sans-serif;
}

h2 {
font-size: 1.8rem;
color: #333;
margin-bottom: 1rem;
}

form {
display: flex;
flex-direction: column;
h2, form, p, a {
color: #333; /* Ensuring text is visible on a white background */
}

input[type="text"], input[type="number"], input[type="password"], input[type="email"] {
padding: 0.75rem;
margin: 0.5rem 0;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
}

button {
padding: 0.75rem;
margin-top: 1rem;
background-color: #d4a017;
color: white;
border: none;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
input[type="text"], input[type="number"], input[type="password"], input[type="email"], button {
width: 100%; /* Ensuring inputs and button stretch to container width */
}

button:hover {
background-color: #b08d14;
}

p {
font-size: 0.9rem;
color: #666;
}

a {
color: #d4a017;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}
Binary file modified projectdatabase.db
Binary file not shown.

0 comments on commit c1e1e76

Please sign in to comment.