Skip to content

NW6 | Zeliha Pala | HTML-CSS | Module-Project | Week 1 / 2 #650

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
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9b85603
html tags added
zelihapala Oct 4, 2023
f90bd74
Added HTML content for the homepage, including text, and images
zelihapala Oct 4, 2023
6ace487
Added navigation and footer links
zelihapala Oct 5, 2023
044215a
background img and grid for hero updated
zelihapala Oct 5, 2023
02ed623
html and grid updated, hero section updated
zelihapala Oct 5, 2023
b4222ff
navigation, section hero and section icons updated
zelihapala Oct 5, 2023
282038e
After the comments, errors have been fixed
zelihapala Oct 5, 2023
29b28b2
Added HTML code for Level 2, Page 1
zelihapala Oct 5, 2023
ccadab2
Added new features to the index.html file for level 2/ wek 2
zelihapala Oct 6, 2023
acb2b48
header and logo updated
zelihapala Oct 6, 2023
ee217de
second page created
zelihapala Oct 6, 2023
906ca40
form and form css updated
zelihapala Oct 9, 2023
3e669ac
form updated
zelihapala Oct 11, 2023
8292b3c
updated form
zelihapala Oct 11, 2023
c80094c
submit button updated
zelihapala Oct 11, 2023
5468d87
Applied styles to labels and inputs; added styling for the submit but…
zelihapala Oct 11, 2023
4e0e3ae
Improved page navigation; "Get Karma today" button navigates store page.
zelihapala Oct 11, 2023
711171e
footer img classes added, css updated
zelihapala Oct 22, 2023
fd9281d
css updated
zelihapala Oct 22, 2023
1f86c88
footer css ad html updated
zelihapala Oct 22, 2023
30ed0eb
footer html updated
zelihapala Oct 22, 2023
36b5450
footer html updated
zelihapala Oct 22, 2023
1582929
footer css updated
zelihapala Oct 22, 2023
5c998af
ham. menu added, media query added, css updated
zelihapala Oct 23, 2023
41e043d
changes on header and footer added to store page
zelihapala Oct 23, 2023
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"cSpell.words": ["adipisicing"]
}
134 changes: 134 additions & 0 deletions css/store.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
:root {
--grey-dark: #616364;
--grey-light: #a7a4a4;
--orange-dark: #c05326;
--orange-light: #f7eae4;
--orange: #d65a17;
--white: #fff;
--black: black;
--pink: #f7d1b980;
}
/*Body*/
body {
font-family: "Roboto", sans-serif;
-webkit-font-smoothing: antialiased;
max-width: 100vw;
margin: 0;
}

h1,
h2,
h4,
h5,
h6,
p {
margin-top: 0;
margin-bottom: 0;
}

/* Form section */
.order-section {
height: min-content;
display: grid;
grid-template-columns: 50vw 50vw;
grid-template-rows: min-content;
align-items: flex-start;
}

/* left text and form */
.order-text {
margin: 15vh 8vw 0;
}
.order-text h1 {
margin-bottom: 2rem;
color: var(--orange-dark);
font-size: 2.8rem;
font-weight: 465;
}
.order-image {
background-image: url("../level-2/store-image_by-andrew-neel-unsplash.jpg");
background-position: center;
background-size: cover;
height: 100%;
}

.couple {
display: flex;
flex-direction: column;
}
.name-row {
display: flex;
flex-direction: row;
gap: 3vw;
}
.name {
width: 50%;
}

.city,
.postcode,
#firstName,
#lastName {
width: 100%;
height: 40px;
}
.radio-row {
display: flex;
flex-direction: row;
gap: 10px;
margin-top: 10px;
}

.radio-text {
margin-top: 2rem;
margin-bottom: 3rem;
}

.address-line {
display: flex;
flex-direction: column;
gap: 10px;
}
#address,
#address2 {
width: 100%;
height: 40px;
}

.input-btn {
padding: 1vw 2vw;
}

.submit input[type="submit"] {
background-color: var(--orange-dark);
color: white;
border: 0;
font-size: 20px;
margin-top: 2rem;
transition: background-color 0.3s;
background-size: 20%;
border-radius: 5px;
}

.submit input[type="submit"]:hover {
background-color: rgb(211, 70, 19);
}
.lbl-space {
margin-top: 2rem;
margin-bottom: 0.5rem;
}

.clr-lbl {
margin: 30px;
}

span.orange-text {
color: var(--orange-dark);
text-decoration: underline;
}

a.terms-link {
text-decoration: none; /* Remove underline*/
color: black;
text-decoration: none;
}
Loading