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

signup ui design fixed #118 #127

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 4 additions & 0 deletions client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
<link rel="icon" type="image/svg+xml" href="/src/assets/logo-final.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Drawn2Shoe</title>
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
Expand Down
85 changes: 85 additions & 0 deletions client/src/pages/Signup/Signup.css
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't use plain CSS. Please migrate to tailwind.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As I mentioned already, we use tailwind CSS. Please stick to that.

Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
.signup-card {
border-radius: 15px;
overflow: hidden;
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.signup-card .card-header {
padding: 1.5rem;
background: linear-gradient(45deg, #007bff, #0056b3);
border-bottom: none;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}

.signup-card .card-body {
padding: 2rem;
background: white;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}

.signup-card .form-control {
margin-bottom: 1rem;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.signup-card .form-control-lg {
font-size: 1.1rem;
padding: 0.75rem 1.25rem;
}

.signup-card .form-check {
margin-bottom: 1rem;
}

.signup-card .form-check-label {
font-weight: 600;
color: #051627;
}

.signup-card .btn {
border: none;
border-radius: 10px;
padding: 12px;
box-shadow: 0 4px 6px rgba(1, 1, 1, 0.3);
}

.btn {
background-color: limegreen; /* Green color for Register button */
}

.signup-card .btn:hover {
background-color: #0056b3; /* Darker color for Register button on hover */
}

.signup-card .form-group label {
font-weight: bold;
color: #495057;
font-size: 1.2rem; /* Example: Larger font size for labels */
}

.signup-card h3 {
font-size: 2rem; /* Example: Larger font size for headers */
margin-bottom: 1.5rem; /* Example: Increased bottom margin */
}

.signup-card .text-center p {
margin: 0;
}

.signup-card .text-center p a {
text-decoration: none;
background-color: rgb(74, 181, 74); /* Green background for the Login button */
color: white; /* White text color for the Login button */
padding: 10px 15px; /* Add some padding */
border-radius: 5px; /* Rounded corners */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Slight shadow */
}

.signup-card .text-center p a:hover {
background-color: #004d00; /* Darker green for the Login button on hover */
text-decoration: none; /* No underline on hover */
}
Comment on lines +62 to +84
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove GPT comments :)


Loading
Loading