Skip to content
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

first try project #27

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,2 @@
# isa7-css-ecommerce-project
## CSS Assignment - 10 points
- Instructions (you can design an ecommerce website the you like but make sure it has the following)
- products (2 points)
- product details (2 points)
- cart + payment details (2 points)
- registration, login functionality (2 points)
- deploy the project on netlify and share the deployment link in README.md; do not forget to make a PR as well (1 point)
- Your creativity and additional functionality to the project will help you to get extra 1 points

https://tubular-puffpuff-b7bae0.netlify.app/
10 changes: 10 additions & 0 deletions home/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# isa7-css-ecommerce-project
## CSS Assignment - 10 points
- Instructions (you can design an ecommerce website the you like but make sure it has the following)
- products (2 points)
- product details (2 points)
- cart + payment details (2 points)
- registration, login functionality (2 points)
- deploy the project on netlify and share the deployment link in README.md; do not forget to make a PR as well (1 point)
- Your creativity and additional functionality to the project will help you to get extra 1 points

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Check the structure of the files again, keep home page on the first level, create a single folder for the assets, check the page's links, and try to deploy again if needed.
Work on responsiveness today and we can review them tomorrow during our 1o1.

Binary file added home/img/Air-Jordanone.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/img/foot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/img/sneckars.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
128 changes: 128 additions & 0 deletions home/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>

<body>

<nav>
<div class="navbar__lists">
<i class="fa-solid fa-shoe-prints navbar__icon navbar__icon"></i>
<ul class="navbar__list">
<li><a href=""></a>Men</li>
<li><a href=""></a>Women</li>
<li><a href=""></a>Accessories</li>
<li><a href="">sale</a></li>
</ul>

</div>

<div class="navbar__lists1">

<ul class="navbar__list1">
<li><a href="">Contact Us</a></li>
<li><a href="">About Us</a></li>
<li><a href=""><i class="fa-regular fa-user"></i></a></li>
<li><a href="#"><i class="fa-solid fa-magnifying-glass"></i></a></li>
<li><a href=""><i class="fa-solid fa-bag-shopping"></i></a></li>


</ul>

</div>

</nav>


<header id="header">
<div class="header__div">
<h2 class="header__tittle">WELCOME TO THE LAND OF SNEACKERS</h2>
</div>


</header>


<main>


<h2>OUR PRODUCTS</h2>
<div class="main__products">

<article class="main__product1 card">
<img src="img/Air-Jordanvans.jpg" alt="shoes">
<P class="main__description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Minima
asperiores laboriosam ratione beatae eos aliquam cupiditate obcaecati harum suscipit eligendi.
</P>
<button class="main__btn">Buy Now</button>
</article>

<article class="main__product2 card">
<img src="img/Air-Jordanvans.jpg" alt="shoes">
<p class="main__description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Alias quisquam
amet dolor veniam expedita. Suscipit animi aperiam ut rerum excepturi.</p>
<button class="main__btn">Buy Now</button>
</article>



</div>






</main>


<footer>¨

<h3 class="footer__tittle">Join Us</h3>
<div class="footer__input">
<label for="email"></label>
<input type="email" id="email" placeholder="Enter your Email" required> <br>
<label for="name"></label>
<input type="name" id="name" placeholder="Enter your Name" required> <br>
<label for="password"></label>
<input type="password" id="password" placeholder="Enter your Password" required> <br>
</div>

<span><button class="footer__btn">join</button></span>
<div class="footer__icon">
<span><a href=""><i class="fab fa-facebook"></i></a></span>
<span><a href=""><i class="fab fa-instagram"></i></a></span>
</div>


<div class="footer__list">
<ul>
<li><a href=""></a>about</li>
<li><a href=""></a>fefeqf</li>
<li><a href=""></a>fqefdfeqf</li>
<li><a href=""></a>fefefgqf</li>
</ul>
</div>










</footer>
</body>

</html>
212 changes: 212 additions & 0 deletions home/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,212 @@
:root {
--padding: 1rem;
}

* {
padding: 0;
margin: 0;
box-sizing: border-box;
list-style-type: none;
text-decoration: none;
}
html {
scroll-behavior: smooth;
}
.card {
box-shadow: 0 7px 10px 0 rgba(0,0,0,0.5);
transition: 0.3s;
width: 30%;
}
.card:hover {
box-shadow: 0 14px 20px 0 rgba(20, 42, 167, 0.9);
}


/* nav starts here */
nav {
background-color: #579BB1;
height: 5rem;
display: flex;
align-items: center;
justify-content: space-between;


}


.navbar__icon {
font-size: 5rem;
margin-right:3rem ;

}
.navbar__lists {
display: flex;
font-size: 2rem;
text-transform: uppercase;
}
ul {
display: flex;


}
li {
padding: var(--padding);
cursor: pointer;
}
nav li:hover {
transform: scale(1.1);
}

.navbar__list1 {
display: flex;

float: right;
font-size: 2rem;

}
a {
color: black;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

/* nav end here */

/* header starts here */
#header {
height: 100vh;
}
.header__div {
min-height: 100%;
background-image: url(img/foot.jpg);
background-position: center;
background-size: cover;
padding: var(--padding);


}

.header__tittle {
color: rgb(4, 94, 211);
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

/* header end here */

/* main starts here */
main {
background-color: #5bc0f8;
height: 100vh;
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
background-image: url(img/sneckars.jpg);
background-position: center;
background-size: cover;
}


.main__products {
display: flex;
gap: 40rem;
}

img {
max-width: 400px;
max-height: auto;
}
.main__description {
color:whitesmoke;
text-align:justify;
}
.main__btn {
height: 50px;
width: 100px;
margin-top: 1rem;
background-color: rgb(173, 153, 153);
border: none;
text-transform: uppercase;
border-radius: 1.5rem;

}
.main__btn:hover {
color: #044c74;
background-color: #86e5ff;
}

/* main end here */

/* footer starts here */
footer {
background-color: #86e5ff;
height: 50vh;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}

.footer__tittle {
color: rgb(52, 82, 95);
font-size: 30px;

}

input {
margin-top: 3rem;
background-color: transparent;
border-radius: 50px;
height: 40px;
width: 300px;
box-shadow: 0 10px 12px 0 rgba(20, 42, 167, 0.9);


}
input:hover {
box-shadow: 0 14px 20px 0 rgba(155, 161, 247, 0.9);

}
.footer__btn {
height: 50px;
width: 100px;
margin-top: 1rem;
background-color: rgb(173, 153, 153);
border: none;
text-transform: uppercase;
border-radius: 1.5rem;
}
.footer__btn:hover {
transform: scale(1.1);
}

.footer__icon a {
font-size: 4rem;
color: rgb(66, 8, 8);
animation-name: anim-icon;
animation-duration: 2s;
animation-iteration-count: infinite ;

}
@keyframes anim-icon {
from{
color: black;
}
to{
color: rgb(124, 55, 55);
}

}
.footer__list {
display: flex;
text-transform: uppercase;
color: rgb(52, 82, 95);
font-size: 1rem;
}


/* footer end here */
Binary file added payment/Air-Jordanvans.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added payment/backgroud.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading