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

Added E Commerce website #6

Merged
merged 4 commits into from
Oct 29, 2023
Merged
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
4 changes: 4 additions & 0 deletions E-commerce website/Readme.md
iamwatchdogs marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# E-COM

E-COMMERCE site with product images, descriptions, and reviews. It displays a list of products with images, titles, prices, and descriptions. Display average ratings and sort reviews by helpfulness or date.
Ensure the website is responsive and accessible on various devices (desktop, mobile, tablet) and also has Pricing and availability of the products
98 changes: 98 additions & 0 deletions E-commerce website/css/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/* ...............styleing the header ................. */
header {
background-image: url(../images/banner4.png);
height: 60vh;
}

/* ...............styleing the Main body starts................. */
.hidden{
opacity: 0;
transition: 1.5s ease;
transform: translateY(180px);
filter: blur(5px);
}
.show{
transition: 1.5s ease;
transform: translateY(0px);
opacity: 1;
filter: blur(0);
}
.raised {
transform: translateY(-30vh);
position: relative;
z-index: 200;
margin: 30px;
padding: 30px;
background-color: white;
}
.section1 h1, .section3 h1, .section4 h1{
font-size: 50px;
}
.section1 , .section4 {
display: flex;
justify-content: space-between;
align-items: center;
}
.section1 img{
width: 50vw;
margin-left: 30px;
}
.section2 blockquote h1 {
margin: 30px;
}
.section3 .stats-holder{
margin-top: 100px;
display: flex;
justify-content: space-around;
align-items: center;
}
.section3 .stats-holder .stats .stats-counter{
display: flex;
justify-content: center;
align-items: center;
}
.section3 .stats-holder .stats .stats-counter span {
font-size: 30px;
}
.section3 .stats-holder .stats div b {
font-size: 18px;
}
.section3 h1{
font-size: 50px;
}
.stats-info{
padding: 30px;
text-align: center;
}
.section4{
margin-top: 100px;
flex-direction: row-reverse;
}
.section4 img{
max-width: 50vw;
margin: 30px;
margin-left: 0px;
}
.section5{
text-align: center;
transform: translateY(-20vh);
}
.section5 .products-holder{
display: flex;
justify-content: space-around;
overflow-x: scroll;
}
.section5 .products-holder .product-cards{
width: 300px;
height: 350px;
display: flex;
justify-content: center;
align-items: center;
}
.product-cards img{
width: 300px;
filter: drop-shadow(7px 2px 10px rgba(0, 0, 0, 0.215));
}
.section6{

}
140 changes: 140 additions & 0 deletions E-commerce website/css/privacyPolicy.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/
/*-------- impor utils.css------------*/
@import url(./utils.css);
/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Dosis:400,500,600,700,800&display=swap');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
2) font-family: 'Poppins', sans-serif;
----------------------------------------*****/

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
box-sizing: border-box !important;
}

html {
scroll-behavior: smooth;
}

body {
color: #666666;
font-size: 14px;
font-family: 'Poppins', sans-serif;
line-height: 1.80857;
font-weight: normal;
background-color: var(--primary-background-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
letter-spacing: 0;
font-weight: normal;
position: relative;
padding: 0 0 10px 0;
font-weight: normal;
line-height: normal;
color: #111111;
margin: 10px 0 10px 0;
}

h1 {
font-size: 24px;
}

h2 {
font-size: 22px;
}

h3 {
font-size: 18px;
}

h4 {
font-size: 16px;
}

h5 {
font-size: 14px;
}

h6 {
font-size: 13px;
}

.privacy-wrapper p {
font-weight: 500;
font-size: 15px;
line-height: 24px;
text-align: justify;
}

.privacy-container {
width: 100%;
height: 100%;
padding: 0 15px;
}

.privacy-header h1 {
margin: 0;
padding: 0;
text-align: center;
margin-top: 10px;
}

.privacy-wrapper {
margin: 15px auto;
width: 80%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.privacy-headerbody {
margin-bottom: 15px;
}

.privacy-section {
padding: 15px 0px;
}

.privacy-section h3 {
margin-bottom: 5px;
}

@media (max-width: 768px) {
.privacy-container {
padding: 0 10px;
}

.privacy-wrapper {
width: 83%;
margin: 10px auto;
}

.privacy-header h1 {
margin-top: 6px;
}

.privacy-headerbody {
margin-bottom: 10px;
}

.privacy-section {
padding: 10px 0px;
}

.privacy-section h3 {
margin-bottom: 2px;
}
}
10 changes: 10 additions & 0 deletions E-commerce website/css/products-responsive.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@media only screen and (max-width: 600px) {
.modal-buy .product{
flex-direction: column;
justify-content: center;
}
.modal-buy .product img{
width: 70vw;
margin: 30px;
}
}
Loading
Loading