-
Notifications
You must be signed in to change notification settings - Fork 42
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
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove GPT comments :) |
||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.