-
-
Notifications
You must be signed in to change notification settings - Fork 620
NW6 | Orlando_Morales | HTML-CSS | Module_Project | Week1 #636
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
OrlandoMoralesKuan
wants to merge
26
commits into
CodeYourFuture:master
Choose a base branch
from
OrlandoMoralesKuan:NW6ModuleProjectOrlandoMorales
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
26 commits
Select commit
Hold shift + click to select a range
9e902a4
Starting the website, Adding the navigation items and background image
OrlandoMoralesKuan b875518
Adding text in main with a div class introducing and button
OrlandoMoralesKuan 10f388d
Adding the footing
OrlandoMoralesKuan 13e9266
Adding icon in the Footer
OrlandoMoralesKuan 2bb34de
FinalVersionMeetKarma
OrlandoMoralesKuan 54ccead
Starting with the store website
OrlandoMoralesKuan 57034ce
Adding the radios to the store html
OrlandoMoralesKuan cc2d26c
Adding Store website
OrlandoMoralesKuan 3c036ea
Adding CSS for Store Website Lv2
OrlandoMoralesKuan afef89c
Changing the path for get the CSS features
OrlandoMoralesKuan cb100bf
changing the path from the CSS
OrlandoMoralesKuan bd5ed69
Adding the CSS because has a new path
OrlandoMoralesKuan 93f2d5b
change size favorite icon logo
OrlandoMoralesKuan 3173bfa
Change position of header_logo
OrlandoMoralesKuan a233c81
change size favourite icon
OrlandoMoralesKuan f7c8d62
change color of radio and checkbox
OrlandoMoralesKuan 221dda6
change semantic structure in radio
OrlandoMoralesKuan 5975b31
changes in css
OrlandoMoralesKuan 6ad8fbb
add height and margint-top to .radioText
OrlandoMoralesKuan f25f71a
change
OrlandoMoralesKuan f56b496
changes position website
OrlandoMoralesKuan 5bcdb9c
change HTML
OrlandoMoralesKuan b715162
restoring color for inputRadio2
OrlandoMoralesKuan fa436d7
Fixing the size of the background image to 100%
OrlandoMoralesKuan 5f08b28
Putting images and text in the same div
OrlandoMoralesKuan bb95a97
Changing the width size of the screen
OrlandoMoralesKuan 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 was deleted.
Oops, something went wrong.
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,254 @@ | ||
*{ | ||
margin-right: 10px; | ||
margin-left: 10px; | ||
} | ||
body { | ||
font-family: "Roboto", sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
margin: 0; | ||
} | ||
|
||
main { | ||
height: 900px; | ||
display: flex; | ||
flex-direction: row-reverse; | ||
} | ||
|
||
a { | ||
color: #f96203; | ||
} | ||
|
||
.header, | ||
.footer { | ||
padding: 0rem 1rem 0rem 1rem; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
} | ||
|
||
/* Header */ | ||
.header_logo { | ||
height: 45px; | ||
margin-top: 3px; | ||
} | ||
|
||
.header { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: flex-start; | ||
width: 90%; | ||
height: 4rem; | ||
margin-bottom: 0rem; | ||
padding-left: 96px; | ||
padding-right: 0rem; | ||
padding-top: 0rem; | ||
background-color: #e0e0e0; | ||
} | ||
|
||
/* Navigation */ | ||
.navigation_list { | ||
display: flex; | ||
list-style: none; | ||
width: 80%; | ||
justify-content: space-between; | ||
padding-left: 300px; | ||
} | ||
|
||
.navigation_item { | ||
padding: 0.5rem 0; | ||
} | ||
|
||
.navigation_link1 { | ||
color: #414040; | ||
font-weight: 600; | ||
text-decoration: none; | ||
} | ||
|
||
.navigation_link { | ||
color: #6e6d6d; | ||
font-weight: 400; | ||
text-decoration: none; | ||
} | ||
|
||
.navigation_link:hover { | ||
color: #f96203; | ||
} | ||
|
||
/* Main */ | ||
.content2 { | ||
width: 100%; | ||
padding-top: 0px; | ||
display: flex; | ||
flex-direction: row-reverse; | ||
} | ||
|
||
.imgContent2 { | ||
text-align: end; | ||
} | ||
|
||
.content3 { | ||
text-align: center; | ||
height: 900px; | ||
} | ||
|
||
.h1Content3 { | ||
width: 543px; | ||
font-size: 40px; | ||
margin: 100px 60px 15px 60px; | ||
color: #f96203; | ||
} | ||
|
||
.imgStore { | ||
height: 900px; | ||
} | ||
|
||
/* Input*/ | ||
.nameText { | ||
display: flex; | ||
justify-content: start; | ||
padding-top: 0px; | ||
font-size: 20px; | ||
height: 50px; | ||
color: #414040; | ||
} | ||
|
||
.h5name1 { | ||
margin-bottom: 0px; | ||
padding-left: 100px; | ||
height: 25px; | ||
} | ||
|
||
.h5name2 { | ||
margin-bottom: 0px; | ||
padding-left: 115px; | ||
height: 25px; | ||
} | ||
|
||
.inputName { | ||
width: 190px; | ||
height: 30px; | ||
margin-left: 0; | ||
border: solid 2px rgb(118, 118, 118); | ||
border-radius: 4px; | ||
} | ||
|
||
.inputAddress { | ||
width: 398px; | ||
height: 30px; | ||
margin-left: 0; | ||
border: solid 2px rgb(118, 118, 118); | ||
border-radius: 4px; | ||
} | ||
|
||
.inputCity { | ||
width: 290px; | ||
height: 36px; | ||
padding: 1px 2px; | ||
margin-left: 10px; | ||
margin-right: 12px; | ||
border: solid 2px rgb(118, 118, 118); | ||
border-radius: 4px; | ||
} | ||
|
||
.inputPostCode { | ||
width: 100px; | ||
height: 30px; | ||
padding: 1px 2px; | ||
border: solid 2px rgb(118, 118, 118); | ||
border-radius: 4px; | ||
} | ||
|
||
/* Select*/ | ||
.h5name3 { | ||
margin-bottom: 0px; | ||
padding-left: 258px; | ||
height: 25px; | ||
} | ||
|
||
.h4SelectColour { | ||
margin-top: 50px; | ||
margin-left: 133px; | ||
} | ||
|
||
.inputRadio1 { | ||
margin-top: 40px; | ||
margin-left: -125px; | ||
accent-color: #f96203; | ||
} | ||
|
||
.inputRadio2 { | ||
margin-top: 40px; | ||
margin-left: 20px; | ||
accent-color: #f96203; | ||
} | ||
|
||
.radioText { | ||
font-size: 18px; | ||
height: 50px; | ||
margin-top: 10px; | ||
} | ||
|
||
.checkbox { | ||
display: flex; | ||
text-align: left; | ||
margin-top: 20px; | ||
margin-left: 110px; | ||
margin-right: 95px; | ||
font-size: 18px; | ||
accent-color: #f96203; | ||
} | ||
|
||
.divPlace { | ||
text-align: left; | ||
} | ||
|
||
/* Button */ | ||
.btnPlace { | ||
margin-top: 10px; | ||
margin-left: 130px; | ||
width: 180px; | ||
height: 50px; | ||
font-size: 17px; | ||
color: #ffffff; | ||
background: #f96203; | ||
border-radius: 8px; | ||
border: solid 2px #ffffff; | ||
} | ||
|
||
/* Footer */ | ||
.footer { | ||
width: 1000px; | ||
font-size: 25px; | ||
text-align: center; | ||
color: #232121; | ||
border-top: solid 2px #eae6e6; | ||
} | ||
|
||
.textFooter { | ||
text-align: center; | ||
font-size: 25px; | ||
color: #acacac; | ||
font-weight: 400; | ||
margin-top: 20px; | ||
} | ||
|
||
.logosFooter { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.iconFooter { | ||
height: 30px; | ||
border: solid 2px #d4ceceaa; | ||
border-radius: 30px; | ||
padding: 5px; | ||
margin-right: 10px; | ||
margin-left: 10px; | ||
} | ||
|
||
.circle { | ||
border: solid 1px #acacac; | ||
border-radius: 20px; | ||
padding: 0 4px 0 4px; | ||
font-size: 15px; | ||
} |
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.
This section needs to be adjusted in such a way that The Image and the text box exist together in a single
div
like below.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.
I did the changes, put the images and the texts in the same div