78 |
79 |

80 |
81 |
82 |
83 |
84 |
Login or Signup
85 |
86 |
87 |
88 |
89 |
By continuing, I agree to the Terms of Use and privacy policy
90 |
91 |
92 |
Have trouble logging in? Get help
93 |
Don't have an account ? Sign up
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
--------------------------------------------------------------------------------
/menspage/mens.css:
--------------------------------------------------------------------------------
1 | #sorting {
2 | width: 100%;
3 | margin-left: 1rem;
4 | margin-top: 15rem;
5 | }
6 |
7 | .filter {
8 | padding: 10px 20px;
9 | }
10 |
11 | * {
12 | box-sizing: border-box;
13 | }
14 |
15 | #wrapper {
16 | width: 100%;
17 | display: flex;
18 | gap: 3rem;
19 | }
20 |
21 |
22 | /* filter */
23 |
24 | #filter {
25 | height: 100%;
26 | width: 23%;
27 | margin-left: 1rem;
28 | margin-top: 5rem;
29 | box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
30 | display: flex;
31 | flex-direction: column;
32 | gap: 1.2rem;
33 | padding: 1.1rem;
34 | padding-bottom: unset;
35 | }
36 |
37 | #filter>div {
38 | width: 100%;
39 | height: 100%;
40 | border-bottom: 2px solid #efefee;
41 | display: flex;
42 | flex-direction: column;
43 | align-items: center;
44 | padding-bottom: 2rem;
45 | }
46 |
47 | #filter>div>* {
48 | width: 90%;
49 | }
50 |
51 | #filter>div>h3~* {
52 | display: inline-block;
53 | }
54 |
55 | input[type="checkbox" i],
56 | input[type="radio" i] {
57 | cursor: pointer;
58 | margin-right: 1.2rem;
59 | }
60 |
61 | #filter h3 {
62 | margin-bottom: 1.2rem;
63 | font-size: 1.8rem;
64 | font-weight: bold;
65 | }
66 |
67 | #filter h3~* {
68 | font-size: 1.6rem;
69 | color: #282c3f;
70 | font-weight: 100;
71 | line-height: 3.2rem;
72 | }
73 |
74 |
75 | /* content */
76 |
77 | #container {
78 | width: 75%;
79 | height: 50%;
80 | margin-top: 5rem;
81 | display: grid;
82 | grid-template-columns: repeat(4, 1fr);
83 | /* grid-auto-rows: minmax(550px, 650px); */
84 | column-gap: 3rem;
85 | row-gap: 7rem;
86 | padding: 0 2.2rem;
87 | font-size: 1.6rem;
88 | }
89 |
90 | #container>div {
91 | height: 100%;
92 | display: flex;
93 | flex-direction: column;
94 | justify-content: space-between;
95 | box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
96 | }
97 |
98 | #container img {
99 | width: 100%;
100 | }
101 |
102 | #container p:nth-child(2) {
103 | color: #505055;
104 | font-size: 1.5rem;
105 | line-height: 2.5rem;
106 | }
107 |
108 | #container .contentBox {
109 | padding: 0.7rem 1.2rem;
110 | display: flex;
111 | flex-direction: column;
112 | gap: 1.3rem;
113 | }
114 |
115 | #container .mixbox {
116 | display: flex;
117 | justify-content: space-between;
118 | align-items: center;
119 | font-weight: bold;
120 | color: black;
121 | }
122 |
123 | #container .mixbox p:nth-child(1) {
124 | font-size: 1.8rem;
125 | }
126 |
127 | #container .strikep {
128 | text-decoration: line-through;
129 | color: #aaa;
130 | font-size: 1.2rem;
131 | }
132 |
133 | #container .offerp {
134 | color: #ffae6a;
135 | font-size: 1.2rem;
136 | }
137 |
138 | #container .wishListp {
139 | color: black;
140 | font-size: 15px;
141 | text-align: center;
142 | border: solid 1px #aaa;
143 | box-sizing: border-box;
144 | padding-top: 15px;
145 | padding-bottom: 15px;
146 | border-radius: 5px;
147 | margin-top: 5px;
148 | margin-bottom: -5px;
149 | }
150 |
151 | #container .addToBagp {
152 | color: white;
153 | text-align: center;
154 | background-color: rgb(255, 62, 108);
155 | padding: 1.6rem 0;
156 | padding-left: 2.6rem;
157 | border-radius: 5px;
158 | }
159 |
160 | #container .addToBagp::after {
161 | content: "→";
162 | display: inline-block;
163 | font-size: 2.3rem;
164 | visibility: hidden;
165 | transition: all 300ms;
166 | }
167 |
168 | #container .addToBagp:hover::after {
169 | transform: translateX(1.5rem);
170 | visibility: visible;
171 | }
172 |
173 | #container>div:hover {
174 | box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
175 | }
176 |
177 |
178 | /* MEDEIA QUERIES FOR TABLET VIEW */
179 |
180 | @media all and (min-width: 551px) and (max-width: 850px) {
181 | #wrapper {
182 | flex-direction: column;
183 | }
184 | #filter {
185 | display: none;
186 | }
187 | #container {
188 | width: 95%;
189 | margin: auto;
190 | margin-top: 3rem;
191 | grid-template-columns: repeat(3, 1fr);
192 | }
193 | #container .addToBagp:hover::after {
194 | transform: translateX(1.2rem);
195 | }
196 | }
197 |
198 |
199 | /* MEDEIA QUERIES FOR MOBILE VIEW */
200 |
201 | @media all and (max-width: 551px) {
202 | #wrapper {
203 | flex-direction: column;
204 | }
205 | #filter {
206 | display: none;
207 | }
208 | #container {
209 | width: 95%;
210 | margin: auto;
211 | margin-top: 3rem;
212 | grid-template-columns: repeat(2, 1fr);
213 | }
214 | #container .addToBagp:hover::after {
215 | transform: translateX(1.2rem);
216 | }
217 | }
--------------------------------------------------------------------------------
/payment/payment.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
90 |
91 |

92 |
93 |
94 |
95 |
96 |
SignUp
97 |
Name
98 |
99 |
100 |
Mobile
101 |
102 |
103 |
Email
104 |
105 |
106 |
Password
107 |
108 |
109 |
By continuing, I agree to the Terms of Use and privacy policy
110 |
111 |
112 |
Have trouble logging in? Get help
113 |
Already have an account ? Login
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
--------------------------------------------------------------------------------
/Home Living Products/home_furnishing.css:
--------------------------------------------------------------------------------
1 |
2 | #sorting {
3 | width: 100%;
4 | margin-left: 1rem;
5 | margin-top: 15rem;
6 | }
7 |
8 | .filter{
9 | padding: 10px 20px;
10 | }
11 |
12 |
13 |
14 | *{
15 | box-sizing: border-box;
16 | }
17 | #wrapper{
18 | width: 100%;
19 | display: flex;
20 | gap: 3rem;
21 | }
22 |
23 | /* filter */
24 | #filter {
25 | height: 100%;
26 | width: 23%;
27 | margin-left: 1rem;
28 | margin-top: 5rem;
29 | box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
30 | display: flex;
31 | flex-direction: column;
32 | gap: 1.2rem;
33 | padding: 1.1rem;
34 | padding-bottom: unset;
35 | }
36 |
37 | #filter > div{
38 | width: 100%;
39 | height: 100%;
40 | border-bottom: 2px solid #efefee;
41 | display: flex;
42 | flex-direction: column;
43 | align-items: center;
44 | padding-bottom: 2rem;
45 | }
46 |
47 | #filter > div > *{
48 | width: 90%;
49 | }
50 | #filter > div > h3 ~*{
51 | display: inline-block;
52 | }
53 | input[type="checkbox" i], input[type="radio" i]{
54 | cursor: pointer;
55 | margin-right: 1.2rem;
56 | }
57 |
58 | #filter h3{
59 | margin-bottom: 1.2rem;
60 | font-size: 1.8rem;
61 | font-weight: bold;
62 | }
63 | #filter h3 ~*{
64 | font-size: 1.6rem;
65 | color: #282c3f;
66 | font-weight: 100;
67 | line-height: 3.2rem;
68 | }
69 |
70 |
71 | /* content */
72 | #container {
73 | width: 75%;
74 | height: 50%;
75 | margin-top: 5rem;
76 | display: grid;
77 | grid-template-columns: repeat(4,1fr);
78 | /* grid-auto-rows: minmax(550px,650px); */
79 | column-gap: 3rem;
80 | row-gap: 7rem;
81 | padding: 0 2.2rem;
82 | font-size: 1.6rem;
83 | }
84 |
85 | #container > div {
86 | display: flex;
87 | flex-direction: column;
88 | justify-content: space-between;
89 | box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
90 | }
91 |
92 | #container img {
93 | width: 100%;
94 | }
95 |
96 | #container p:nth-child(2){
97 | color: #505055;
98 | font-size: 1.3rem;
99 |
100 | }
101 |
102 | #container .contentBox{
103 | padding: 0.7rem 1.2rem;
104 | display: flex;
105 | flex-direction: column;
106 | gap:1.3rem;
107 | }
108 |
109 | #container .mixbox {
110 | display: flex;
111 | justify-content: space-between;
112 | align-items: center;
113 | font-weight: bold;
114 | color: black;
115 | }
116 | #container .mixbox p:nth-child(1){
117 | font-size: 1.8rem;
118 |
119 | }
120 |
121 | #container .strikep {
122 | text-decoration: line-through;
123 | color: #aaa;
124 | font-size: 1.2rem;
125 | }
126 |
127 | #container .offerp {
128 | color: #ffae6a;
129 | font-size: 1.2rem;
130 | }
131 |
132 | #container .wishListp {
133 | color: black;
134 | font-size: 15px;
135 | text-align: center;
136 | border: solid 1px #aaa;
137 | box-sizing: border-box;
138 | padding-top: 15px;
139 | padding-bottom: 15px;
140 | border-radius: 5px;
141 | margin-top: 5px;
142 | margin-bottom: -5px;
143 | }
144 |
145 | #container .addToBagp {
146 | color: white;
147 | text-align: center;
148 | background-color: rgb(255,62,108);
149 | padding: 1.6rem 0;
150 | padding-left:2.6rem;
151 | border-radius: 5px;
152 | }
153 | #container .addToBagp::after{
154 | content: "→";
155 | display: inline-block;
156 | font-size: 2.3rem;
157 | visibility: hidden;
158 | transition: all 300ms;
159 | }
160 | #container .addToBagp:hover::after{
161 | transform: translateX(1.5rem);
162 | visibility: visible;
163 | }
164 |
165 | #container > div:hover{
166 | box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
167 | }
168 |
169 |
170 |
171 | /* MEDEIA QUERIES FOR TABLET VIEW */
172 | @media all and (min-width: 551px) and (max-width: 850px){
173 |
174 | #wrapper{
175 | flex-direction:column;
176 | }
177 | #filter{
178 | display: none;
179 | }
180 |
181 | #container{
182 | width: 95%;
183 | margin: auto;
184 | margin-top: 3rem;
185 | grid-template-columns: repeat(3, 1fr);
186 | }
187 | #container > div{
188 | box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
189 | }
190 | #container .addToBagp:hover::after{
191 | transform: translateX(1.2rem);
192 | }
193 | }
194 |
195 | /* MEDEIA QUERIES FOR MOBILE VIEW */
196 | @media all and (max-width: 551px){
197 |
198 | #wrapper{
199 | flex-direction:column;
200 | }
201 | #filter{
202 | display: none;
203 | }
204 |
205 | #container{
206 | width: 95%;
207 | margin: auto;
208 | margin-top: 3rem;
209 | grid-template-columns: repeat(2, 1fr);
210 | }
211 | #container > div{
212 | box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
213 | }
214 | #container .addToBagp:hover::after{
215 | transform: translateX(1.2rem);
216 | }
217 | }
218 |
219 |
--------------------------------------------------------------------------------
/wishlist/cart.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | var cartarr = JSON.parse(localStorage.getItem("BagListObj"))||[];
4 |
5 |
6 | var itemcount =cartarr.length;
7 | localStorage.setItem("itemcount",itemcount)
8 |
9 | var delivery = 50;
10 | localStorage.setItem("delivery",delivery)
11 |
12 | var MRP = cartarr.reduce(function(sum,a,ind){
13 | return sum+ +(cartarr[ind].strikedoffprice.split(" ")[1])
14 | },0);
15 | localStorage.setItem("MRP",MRP)
16 |
17 | var amount = cartarr.reduce(function(sum,a,ind){
18 | return sum+ +(cartarr[ind].price.split(" ")[1])
19 | },0);
20 | localStorage.setItem("amount",amount)
21 |
22 | var discount = MRP - amount;
23 | localStorage.setItem("discount",discount)
24 |
25 | if (itemcount != 0) {
26 | total = amount+delivery;
27 | } else {
28 | total = 0;
29 | delivery = 0;
30 | localStorage.setItem("delivery",delivery)
31 | }
32 |
33 | document.querySelector(".amount_pay").innerText= total;
34 | document.querySelector(".filldiscount").innerText= "- "+discount;
35 | document.querySelector(".filldelivery").innerText= delivery;
36 | document.querySelector(".totalprice").innerText= MRP;
37 | document.querySelector(".pricedets").innerText= `PRICE DETAILS ( ${itemcount} Items)`;
38 |
39 |
40 | cartarr.map(function(ele,ind){
41 | // document.querySelector(".container").innerText = ""
42 | var box = document.createElement("div");
43 | box.className ="main"
44 |
45 |
46 | var imgbox = document.createElement("div");
47 |
48 | var image =document.createElement("img");
49 | image.src = ele.image_url
50 | imgbox.append(image)
51 |
52 | var detailsbox = document.createElement("div");
53 |
54 | var name =document.createElement("p");
55 | name.innerText=ele.brand
56 | name.style.fontSize="20px";
57 | name.style.marginBottom ="-8px"
58 |
59 |
60 | var para =document.createElement("p");
61 | para.innerText=ele.para ;
62 | para.style.color="gray"
63 |
64 | var price = document.createElement("span");
65 | price.innerText = ele.price
66 |
67 | var strikedprice = document.createElement("span");
68 | strikedprice.innerText = ele.strikedoffprice;
69 | strikedprice.style.textDecoration = "line-through";
70 | strikedprice.style.color ="gray";
71 |
72 |
73 | var offer = document.createElement("span");
74 | offer.innerText =ele.offer;
75 | offer.style.color="red";
76 |
77 |
78 | var pricepara =document.createElement("p");
79 | pricepara.append(price,strikedprice)
80 |
81 | detailsbox.append(name,para,pricepara,offer)
82 |
83 | var buttonbox = document.createElement("div");
84 |
85 | var remove =document.createElement("button");
86 |
87 | remove.innerText ="REMOVE";
88 | remove.addEventListener("click",function(){
89 | removeitem(ind)
90 | })
91 |
92 |
93 |
94 | buttonbox.append (remove)
95 |
96 |
97 |
98 | box.append(imgbox,detailsbox,buttonbox)
99 |
100 | document.querySelector(".container").append(box)
101 |
102 | })
103 |
104 | document.querySelector(".wishlistlink").addEventListener("click",sendtowish)
105 | function sendtowish (){
106 | window.location.href ="wishlist.html"
107 | }
108 |
109 |
110 | function removeitem(ind){
111 | cartarr.splice(ind,1);
112 | localStorage.setItem("BagListObj",JSON.stringify(cartarr))
113 | window.location.href ="cart.html";
114 |
115 | }
116 |
117 | document.querySelector(".makeorder").addEventListener("click",profile)
118 |
119 | function profile(){
120 | window.location.href="../payment/payment.html";
121 | }
122 |
123 | document.querySelector(".apply").addEventListener("click",discountfun);
124 |
125 | function discountfun(){
126 |
127 | var payable_amount = +(localStorage.getItem("amount"));
128 | var int_promo = document.querySelector("#promo").value;
129 |
130 | if( payable_amount>300 && int_promo=="MYNTRA300")
131 | {
132 | amount = amount-300;
133 | discount =discount+300;
134 | localStorage.setItem("amount",amount) ;
135 | localStorage.setItem("discount",discount)
136 | document.querySelector(".amount_pay").innerText= amount;
137 | document.querySelector(".filldiscount").innerText= "- "+discount;
138 |
139 | document.querySelector(".apply").removeEventListener("click",discountfun);
140 | }
141 | // console.log( amount, discount)
142 |
143 | }
144 |
145 | document.getElementById('landingPage').addEventListener('click', function(){
146 | window.location.href = "../index.html";
147 |
148 | })
149 |
150 | document.querySelector("#second").addEventListener("click",function(){
151 | window.location.href="../Profile/signup.html";
152 | })
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
--------------------------------------------------------------------------------
/Landingpage/header.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
2 |
3 | :root{
4 | font-size: 62.5%;
5 | --primaryFont : 'DM Sans', sans-serif;
6 | --charSpace : 6px;
7 | --primaryColor : #3e4152;
8 | --secondaryColor : #fafbfc;
9 | }
10 | body{
11 | font-family: var(--primaryFont);
12 | scroll-behavior: smooth;
13 | }
14 | .slider{
15 | width: 100%;
16 | height: 450px;
17 | overflow: hidden;
18 | }
19 |
20 | .slides{
21 | width: 500%;
22 | height: 100%;
23 | display: flex;
24 | }
25 |
26 | .slides input{
27 | display: none;
28 | }
29 |
30 | .slide{
31 | width: 20%;
32 | transition: 800ms;
33 | }
34 |
35 | .slide img{
36 | width: 100%;
37 | height: 100%;
38 | }
39 |
40 |
41 |
42 | #flatdiscount{
43 | position :fixed;
44 | right: 0px;
45 | bottom: 130px;
46 | width: 50px;
47 | height: 250px;
48 | box-sizing:border-box;
49 | padding-left: 10px;
50 | background-color: #535766;
51 | color: #fff;
52 | letter-spacing:1px;
53 | }
54 | #sidePanel{
55 | font-size:30px;
56 | color: #fcfcfc;
57 | }
58 | #flatdiscount>h1{
59 | writing-mode: vertical-lr;
60 | height: 200px;
61 | text-align: center;
62 | margin:auto;
63 | font-size: 20px;
64 | font-weight: bolder;
65 | color: #fcfcfc;
66 |
67 | }
68 | body>h1{
69 | margin: 50px 25px;
70 | margin-top:8rem;
71 | font-size: 3rem;
72 | text-transform: uppercase;
73 | letter-spacing: var(--charSpace);
74 | }
75 | #adDiv
76 | {
77 | margin-top:50px;
78 | }
79 |
80 | #deals,
81 | #best,
82 | #top,
83 | #categories,
84 | #dealsTop,
85 | #unmissable,
86 | #colours,
87 | #topInfluencers,
88 | #budget,
89 | #trending{
90 | width: 100%;
91 | padding: 1rem;
92 | display: grid;
93 | gap: 1rem;
94 | }
95 |
96 |
97 |
98 | #deals{
99 | margin: auto;
100 | }
101 | #deals,
102 | #top{
103 | grid-template-columns: repeat(7,auto);
104 | grid-template-columns: repeat(7,auto);
105 | }
106 | #best,#categories,
107 | #dealsTop,
108 | #unmissable,
109 | #budget,
110 | #trending {
111 | grid-template-columns: repeat(8,auto);
112 | }
113 |
114 | #colours{
115 | grid-template-columns: repeat(4,auto);
116 |
117 | }
118 | #topInfluencers{
119 | grid-template-columns: repeat(6,auto);
120 |
121 | }
122 |
123 |
124 | @media only screen and (min-width: 551px) and (max-width: 850px) {
125 | .slider {
126 | height: 250px;
127 | }
128 | .navigation-manual{
129 | margin-top: 2.5rem;
130 | }
131 |
132 | #deals{
133 | grid-template-columns: repeat(4, 1fr);
134 | grid-template-rows: repeat(2, auto);
135 |
136 | }
137 |
138 | #best{
139 | grid-template-columns: repeat(4, 1fr);
140 | grid-template-rows: repeat(4, auto);
141 | }
142 | #top{
143 | grid-template-columns: repeat(4, 1fr);
144 | grid-template-rows: repeat(2, auto);
145 | }
146 | #categories{
147 | grid-template-columns: repeat(4, 1fr);
148 | grid-template-rows: repeat(4,auto);
149 | }
150 | #dealsTop{
151 | grid-template-columns: repeat(4, 1fr);
152 | grid-template-rows: repeat(4,auto);
153 |
154 | }
155 | #unmissable{
156 | grid-template-columns: repeat(4, 1fr);
157 | grid-template-rows: repeat(2, auto);
158 |
159 | }
160 | #colours{
161 | grid-template-columns: repeat(2, 1fr);
162 | grid-template-rows: repeat(4, auto);
163 | }
164 | #topInfluencers{
165 | grid-template-columns: repeat(3, 1fr);
166 | grid-template-rows: repeat(2, auto);
167 | }
168 | #budget{
169 | grid-template-columns: repeat(4, 1fr);
170 | grid-template-rows: repeat(2, auto);
171 | }
172 | #trending{
173 | grid-template-columns: repeat(4, 1fr);
174 | grid-template-rows: repeat(2, auto);
175 | }
176 | }
177 | @media all and (max-width: 550px) {
178 | .slider{
179 | height: 250px;
180 | }
181 | #deals{
182 | grid-template-columns: repeat(2, 1fr);
183 | grid-template-rows: auto;
184 | }
185 | #deals img{
186 | width: 85%;
187 | display: block;
188 | margin: auto;
189 | }
190 | #deals > div:nth-child(7){
191 | border: 2px solid red;
192 | display: none;
193 | }
194 |
195 | #best{
196 | grid-template-columns: repeat(2, 1fr);
197 | grid-template-rows: auto;
198 |
199 | }
200 | #top{
201 | margin-top: auto;
202 | grid-template-columns: repeat(2, 1fr);
203 | grid-template-rows:auto;
204 | }
205 | #categories{
206 | grid-template-columns: repeat(2, 1fr);
207 | grid-template-rows: auto;
208 | }
209 | #dealsTop{
210 | grid-template-columns: repeat(2, 1fr);
211 | grid-template-rows: auto;
212 |
213 | }
214 | #unmissable{
215 | grid-template-columns: repeat(3, 1fr);
216 | grid-template-rows: auto;
217 |
218 | }
219 | #colours{
220 | grid-template-columns: repeat(2, 1fr);
221 | grid-template-rows: repeat(4, auto);
222 | }
223 | #topInfluencers{
224 | grid-template-columns: repeat(2, 1fr);
225 | grid-template-rows: auto;
226 | /* height:100px; */
227 | }
228 | #budget{
229 | grid-template-columns: repeat(3, 1fr);
230 | grid-template-rows: auto;
231 | }
232 | #trending{
233 | grid-template-columns: repeat(2, 1fr);
234 | grid-template-rows: auto;
235 | }
236 | }
237 |
--------------------------------------------------------------------------------
/wishlist/cart.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
2 | *{
3 | box-sizing: border-box;
4 | }
5 | body{
6 | font-family: 'DM Sans', sans-serif;
7 | }
8 | #upperbar{
9 | display: flex;
10 | justify-content: space-between;
11 | border-bottom: 1px solid #F5F5F6;
12 | margin: 0px -8px;
13 | color: gray;
14 | align-items: center;
15 | height: 79px;
16 | box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
17 | }
18 | #upperbar >div{
19 | height: 50px;
20 | display: flex;
21 | align-items: center;
22 | margin: 5px 20px;
23 | justify-content: space-between;
24 |
25 | }
26 | #upperbar >div>img{
27 | height: 100%;
28 | cursor: pointer;
29 | }
30 | #upperbar >div:first-child{
31 | margin-left: 50px;
32 | }
33 | #upperbar >div:last-child{
34 | margin-right: 50px;
35 | }
36 | #upperbar p > #first{
37 | color: #14cda8;
38 | border-bottom: 2px solid #14cda8;
39 | padding-bottom: 5px;
40 | }
41 | #upperbar p > *{
42 | cursor: pointer;
43 | }
44 | #timerbox{
45 | text-align: center;
46 | border-bottom: 1px solid #F5F5F6;
47 | color: gray;
48 | font-size: 20px;
49 | }
50 | #timerbox span{
51 | color:#fe3f9b;
52 | }
53 | .container{
54 | margin-top: 20px;
55 | display: grid;
56 | grid-template-columns: repeat(1,1fr);
57 | }
58 | .main{
59 | width: 80%;
60 | padding: 1rem;
61 | margin-top: 20px;
62 | display: flex;
63 | border-radius: 4px;
64 | justify-content: space-between;
65 | align-items: center;
66 | box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
67 | }
68 | .main >div{
69 | padding: 8px ;
70 | width: 30%;
71 | }
72 | .main img{
73 | width: 100%;
74 | }
75 | .main >div:last-child{
76 | display: flex;
77 | flex-direction: column;
78 | justify-content: center;
79 | align-items: center;
80 | }
81 | .main button{
82 | width: 80%;
83 | }
84 |
85 | .wishlistlink{
86 | margin-top: 40px;
87 | height: 40px;
88 | margin-left: 144px;
89 | width: 45.7%;
90 | border :2px solid #F5F5F6;
91 | border-radius: 4px;
92 | display: flex;
93 | font-size: 20px;
94 | align-items: center;
95 | cursor: pointer;
96 | }
97 | .wishlistlink >p, .wishlistlink >i{
98 | margin: 5px;
99 | }
100 | .wishlistlink > p:hover{
101 | color:#32cd32;
102 | font-weight: 900;
103 | border-bottom: 2px solid #ff3f6c;
104 | }
105 | .container span{
106 | margin: 4px;
107 | }
108 | .orderbox{
109 | align-self: flex-start;
110 | margin-top: 80px;
111 | padding: 20px;
112 | border-radius: 4px;
113 | box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
114 | }
115 | .con_ord{
116 | display:grid;
117 | grid-template-columns: 60% 35%;
118 | justify-content: center;
119 | }
120 | .orderbox>div{
121 | display: flex;
122 | justify-content: space-between;
123 | margin: 10px 0px;
124 | color: #535766;
125 |
126 | }
127 | .promocode{
128 | display:block
129 | }
130 | button{
131 | background-color: #ff3f6c;
132 | color: white;
133 | border: 10px;
134 | outline: none;
135 | cursor: pointer;
136 | padding: 1rem 2rem;
137 | border-radius: 5px;
138 | }
139 | .amount{
140 | font-weight: bold;
141 | }
142 | .filldiscount{
143 | color:#32cd32;
144 | text-decoration: none;
145 | }
146 | .pricedets,.amount{
147 | border-bottom: 1px solid gray;
148 | padding-bottom: 20px;
149 | }
150 | .orderbox .makeorder,.apply{
151 | justify-content: center;
152 | background-color: #ff3f6c;
153 | padding: 0.7rem 1.2rem;
154 | color: white;
155 | font-weight: bold;
156 | border-radius: 5px;
157 | cursor: pointer;
158 | }
159 | .orderbox .makeorder{
160 | margin-top: 30px;
161 | }
162 | #promo{
163 | border: 1px solid #ff3f6c;
164 | padding-left: 15px;
165 | border-radius: 5px;
166 |
167 | }
168 | .amount + p{
169 | text-align: center;
170 | font-size: 20px;
171 | }
172 |
173 |
174 |
175 |
176 | /* MEDEIA QUERIES FOR TABLET VIEW */
177 | @media all and (min-width: 721px) and (max-width: 850px){
178 | .container{
179 | margin-top: 20px;
180 | margin-left: 10px;
181 | width: 60%;
182 | display: -moz-grid-line;
183 | grid-template-columns: repeat(1,1fr);
184 | gap: 10px;
185 | }
186 | .promocode{
187 | display: flex;
188 | flex-direction: column;
189 |
190 | }
191 | .apply{
192 | width: 30%;
193 | margin: auto;
194 | text-align: center;
195 | margin-top: 10px;
196 | }
197 | #promo{
198 | height: 30px;
199 | }
200 |
201 | }
202 |
203 | @media all and (max-width: 720px){
204 | .con_ord{
205 | display:grid;
206 | grid-template-columns: repeat(1,1fr);
207 | padding: 5px;
208 | }
209 | .container{
210 | margin: auto;
211 | width: 90%;
212 | display: -moz-grid-line;
213 | grid-template-columns: repeat(1,1fr);
214 | gap: 10px;
215 | }
216 | .orderbox{
217 | height: 400px;
218 | width: 50%;
219 | margin: auto;
220 | border :2px solid #F5F5F6;
221 | margin-top: 80px;
222 | padding: 20px;
223 | border-radius: 4px;
224 | }
225 | #upperbar >div{
226 | margin: 5px 5px;
227 |
228 | }
229 | #upperbar >div:first-child{
230 | margin-left: 10px;
231 | }
232 | #upperbar >div:last-child{
233 | margin-right: 10px;
234 | }
235 | .footer{
236 | display: flex;
237 | flex-direction: column;
238 | }
239 |
240 | }
241 |
--------------------------------------------------------------------------------
/wishlist/wishlist.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
--------------------------------------------------------------------------------
/Homepages/womenHomePage.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
--------------------------------------------------------------------------------