-
-
Notifications
You must be signed in to change notification settings - Fork 546
Manchester | 26-ITP-Sep | Gustarv Nchitu | Sprint 1 | Form Controls #1533
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
Open
Jestavo1
wants to merge
7
commits into
CodeYourFuture:main
Choose a base branch
from
Jestavo1:feature/form-controls
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+179
−7
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
98350a3
adding form contents to index.html
Jestavo1 8b38273
adding css file
Jestavo1 38f5f59
adding properties
Jestavo1 57f8663
linking css to html
Jestavo1 ba865a1
refactor: separate T-shirt colour and size fields in the form
Jestavo1 231d9db
fix: remove extraneous code block from index.html
Jestavo1 7dccd6a
fix: remove extraneous code block from index.html
Jestavo1 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 hidden or 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 hidden or 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,112 @@ | ||
| ```css | ||
| body { | ||
| font-family: "Segoe UI", Tahoma, sans-serif; | ||
| background: linear-gradient(135deg, #e8f0ff, #f8faff); | ||
| color: #243447; | ||
| margin: 0; | ||
| min-height: 100vh; | ||
| } | ||
|
|
||
| header { | ||
| background: linear-gradient(120deg, #4a69bd, #6a89cc); | ||
| color: #ffffff; | ||
| text-align: center; | ||
| padding: 35px 20px; | ||
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); | ||
| } | ||
|
|
||
| header h1 { | ||
| margin: 0; | ||
| font-size: 2rem; | ||
| letter-spacing: 1px; | ||
| } | ||
|
|
||
| main { | ||
| max-width: 700px; | ||
| margin: 45px auto; | ||
| padding: 0 25px; | ||
| } | ||
|
|
||
| fieldset { | ||
| background-color: #ffffff; | ||
| border: none; | ||
| border-left: 5px solid #4a69bd; | ||
| border-radius: 12px; | ||
| padding: 28px; | ||
| margin-bottom: 25px; | ||
| box-shadow: 0 8px 20px rgba(74, 105, 189, 0.12); | ||
| } | ||
|
|
||
| legend { | ||
| font-weight: 700; | ||
| color: #4a69bd; | ||
| padding: 0 12px; | ||
| font-size: 1.1rem; | ||
| } | ||
|
|
||
| fieldset p { | ||
| margin-bottom: 20px; | ||
| line-height: 1.5; | ||
| } | ||
|
|
||
| input[type="text"], | ||
| input[type="email"] { | ||
| display: block; | ||
| width: 100%; | ||
| box-sizing: border-box; | ||
| padding: 13px 15px; | ||
| margin-top: 8px; | ||
| border: 2px solid #d9e2f3; | ||
| border-radius: 8px; | ||
| background-color: #f9fbff; | ||
| color: #243447; | ||
| transition: border-color 0.2s ease, box-shadow 0.2s ease; | ||
| } | ||
|
|
||
| select { | ||
| display: block; | ||
| margin-top: 8px; | ||
| padding: 13px 15px; | ||
| border: 2px solid #d9e2f3; | ||
| border-radius: 8px; | ||
| background-color: #f9fbff; | ||
| color: #243447; | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| input[type="submit"] { | ||
| background: linear-gradient(120deg, #4a69bd, #3867d6); | ||
| color: #ffffff; | ||
| font-weight: 700; | ||
| font-size: 1rem; | ||
| padding: 13px 26px; | ||
| border: none; | ||
| border-radius: 8px; | ||
| cursor: pointer; | ||
| box-shadow: 0 5px 12px rgba(56, 103, 214, 0.25); | ||
| transition: transform 0.2s ease, box-shadow 0.2s ease; | ||
| } | ||
|
|
||
| input[type="submit"]:hover { | ||
| transform: translateY(-2px); | ||
| box-shadow: 0 8px 16px rgba(56, 103, 214, 0.3); | ||
| } | ||
|
|
||
| input[type="text"]:focus, | ||
| input[type="email"]:focus, | ||
| input[type="radio"]:focus, | ||
| input[type="submit"]:focus, | ||
| select:focus { | ||
| outline: none; | ||
| border-color: #4a69bd; | ||
| box-shadow: 0 0 0 4px rgba(74, 105, 189, 0.2); | ||
| } | ||
|
|
||
| footer { | ||
| text-align: center; | ||
| font-weight: 600; | ||
| color: #65748b; | ||
| padding: 20px; | ||
| margin-top: 20px; | ||
| } | ||
| ``` |
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.
The style sheet filename is typically spelled
style.css.