-
-
Notifications
You must be signed in to change notification settings - Fork 620
London Turing - Zahraa Tayyar - HTML/ CSS 1 - Week 2 #530
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
zahraateee
wants to merge
21
commits into
CodeYourFuture:master
Choose a base branch
from
zahraateee:master
base: master
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.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
8039929
Created the beginning of the page
zahraateee 24abc75
Started second section
zahraateee 55858c9
Footer update
zahraateee c4b8df5
updated general layout
zahraateee 2431df5
Fixed icon size
zahraateee d3c539a
Added feature section
zahraateee 4a7f6be
Started store page
zahraateee ac8358f
developed CSS
zahraateee f4405a8
updated css and layout
zahraateee 0873be2
Updated css to match
zahraateee 9a2b0f4
form width: auto
zahraateee acdb1c3
update spacing between input sections
zahraateee c652d72
layout
zahraateee c0da610
spacing fixed
zahraateee cdcda23
css
zahraateee 1468c45
form layout update
zahraateee c5eb854
css and html styling
zahraateee 09131f4
fixed header issue
zahraateee ea783f3
Footer over action
zahraateee 1b27604
header hover amended
zahraateee c6268d9
header
zahraateee 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,3 @@ | ||
| { | ||
| "liveServer.settings.port": 5501 | ||
| } |
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,113 @@ | ||
|
|
||
| /* main */ | ||
|
|
||
| .main_store { | ||
| display: flex; | ||
| flex-direction: row; | ||
| margin:0; | ||
| color:gray; | ||
| } | ||
|
|
||
| .store_title { | ||
| color: #E14E00; | ||
| margin-top:0; | ||
| } | ||
|
|
||
| /* Form */ | ||
|
|
||
| .order_form{ | ||
| display: flex; | ||
| flex-direction: column; | ||
| width: 100%; | ||
| margin: 7rem; | ||
| } | ||
|
|
||
| .input { | ||
| border:solid 1.5px gray; | ||
| border-radius: 5px; | ||
| padding: 1rem; | ||
| width:100%; | ||
| margin-top: 1rem; | ||
| } | ||
|
|
||
| /* Form Divs*/ | ||
|
|
||
| fieldset { | ||
| border: none; | ||
| display:flex; | ||
| gap: 2rem; | ||
| width:auto; | ||
| } | ||
|
|
||
| .name_section { | ||
| display: flex; | ||
| flex-direction: row; | ||
| justify-content: space-between; | ||
| gap: 5rem; | ||
| margin-top: 4rem; | ||
| margin-bottom: 2rem;; | ||
| width: 100%; | ||
| } | ||
|
|
||
| .address_section { | ||
| display: flex; | ||
| flex-direction: column; | ||
| margin-bottom: 2rem; | ||
| width:100%; | ||
| } | ||
|
|
||
| #address { | ||
| margin-bottom:2rem; | ||
| } | ||
|
|
||
| .location_section { | ||
| display: flex; | ||
| flex-direction: row; | ||
| justify-content: space-between; | ||
| gap: 2rem; | ||
| width:100%; | ||
| margin-bottom: 2rem; | ||
| } | ||
|
|
||
| .colour_section { | ||
| margin: 2rem 0 7rem 0; | ||
| } | ||
|
|
||
| .colour_title { | ||
| margin: 2rem 0 1rem 0; | ||
| } | ||
|
|
||
| .terms_cond { | ||
| display: flex; | ||
| flex-direction: row; | ||
| justify-content: left; | ||
| margin-bottom:3rem; | ||
| width: 100%; | ||
| } | ||
|
|
||
| .button { | ||
| background-color: #E14E00; | ||
| padding: 1rem; | ||
| justify-content: left; | ||
| color: white; | ||
| border-radius: 0.2rem;; | ||
| border: none; | ||
| margin-right: 50%; | ||
| } | ||
|
|
||
| /* Radio Styling */ | ||
|
|
||
| /* Checkbox Styling */ | ||
|
|
||
| input [type="checkbox"]:before { | ||
| color: #E14E00; | ||
| transform: scale(0); | ||
| } | ||
|
|
||
| /* image */ | ||
|
|
||
| .store_image1 { | ||
| max-width: 100%; | ||
| height: 100%; | ||
| object-fit: cover; | ||
| } | ||
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
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.
Uh oh!
There was an error while loading. Please reload this page.