├── icons
├── 12.jpeg
├── 123.jpeg
├── pexels-photo-11481263.jpeg
├── pexels-photo-13396245.jpeg
├── pexels-photo-13867144.jpeg
├── facebook (1).svg
├── map-pin.svg
├── credit-card (1).svg
├── mail.svg
├── instagram.svg
├── twitter.svg
└── phone.svg
├── example.css.map
├── example.css
├── example.scss
└── example.html
/icons/12.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AmilAbdullazadeh/e-commerce/HEAD/icons/12.jpeg
--------------------------------------------------------------------------------
/icons/123.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AmilAbdullazadeh/e-commerce/HEAD/icons/123.jpeg
--------------------------------------------------------------------------------
/icons/pexels-photo-11481263.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AmilAbdullazadeh/e-commerce/HEAD/icons/pexels-photo-11481263.jpeg
--------------------------------------------------------------------------------
/icons/pexels-photo-13396245.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AmilAbdullazadeh/e-commerce/HEAD/icons/pexels-photo-13396245.jpeg
--------------------------------------------------------------------------------
/icons/pexels-photo-13867144.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AmilAbdullazadeh/e-commerce/HEAD/icons/pexels-photo-13867144.jpeg
--------------------------------------------------------------------------------
/icons/facebook (1).svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/map-pin.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/credit-card (1).svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/mail.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/instagram.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/twitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/icons/phone.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/example.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["example.scss","example.css"],"names":[],"mappings":"AAAA;EACI,sBAAA;EACA,SAAA;EACA,UAAA;ACCJ;;ADCA;EACI,yCAAA;EACA,kBAAA;EACA,YAAA;ACEJ;ADDI;EACI,2BAAA;EACA,YAAA;ACGR;;ADCA;EACI,yCAAA;EACA,aAAA;ACEJ;ADCI;EACI,kBAAA;EACA,kBAAA;ACCR;ADCQ;EACI,YAAA;ACCZ;ADCY;EACI,iBAAA;ACChB;ADEY;EACI,8BAAA;ACAhB;ADGY;EACI,sBAAA;ACDhB;ADIY;EACI,WAAA;ACFhB;ADIgB;EACI,YAAA;EACA,gBAAA;ACFpB;;ADQA;EACI,aAAA;EACA,gBAAA;ACLJ;ADMI;EACI,kBAAA;EACA,WAAA;EACA,YAAA;EACA,mCAAA;EACA,mBAAA;ACJR;ADOI;EACI,kBAAA;EACA,WAAA;EACA,YAAA;EACA,iCAAA;EACA,mBAAA;ACLR;ADQI;EACI,kBAAA;EACA,WAAA;EACA,YAAA;EACA,mCAAA;EACA,mBAAA;ACNR;ADSI;EACI,kBAAA;EACA,WAAA;EACA,YAAA;EACA,kCAAA;EACA,mBAAA;ACPR;;ADUA;EACI,yCAAA;EACA,aAAA;ACPJ;ADUI;EACI,kBAAA;EACA,kBAAA;ACRR;ADUQ;EACI,YAAA;ACRZ;ADUY;EACI,iBAAA;ACRhB;ADWY;EACI,8BAAA;ACThB;ADYY;EACI,sBAAA;ACVhB;ADaY;EACI,WAAA;ACXhB;ADagB;EACI,YAAA;EACA,gBAAA;ACXpB","file":"example.css"}
--------------------------------------------------------------------------------
/example.css:
--------------------------------------------------------------------------------
1 | * {
2 | box-sizing: border-box;
3 | margin: 0;
4 | padding: 0;
5 | }
6 |
7 | #about {
8 | font-family: Arial, Helvetica, sans-serif;
9 | text-align: center;
10 | margin: 50px;
11 | }
12 | #about h5, #about p {
13 | color: rgba(0, 0, 0, 0.749);
14 | margin: 15px;
15 | }
16 |
17 | #photo {
18 | font-family: Arial, Helvetica, sans-serif;
19 | display: flex;
20 | }
21 | #photo .container {
22 | margin-right: 10px;
23 | margin-left: 100px;
24 | }
25 | #photo .container .card {
26 | margin: 40px;
27 | }
28 | #photo .container .card img {
29 | border-radius: 1%;
30 | }
31 | #photo .container .card h5 {
32 | color: rgba(33, 30, 30, 0.886);
33 | }
34 | #photo .container .card p {
35 | color: rgb(47, 44, 44);
36 | }
37 | #photo .container .card .p1 {
38 | color: gray;
39 | }
40 | #photo .container .card .p1 .p2 {
41 | color: green;
42 | font-weight: 800;
43 | }
44 |
45 | .circle {
46 | display: flex;
47 | margin-top: 10px;
48 | }
49 | .circle .first {
50 | margin-right: 10px;
51 | width: 15px;
52 | height: 15px;
53 | background-color: rgb(41, 208, 230);
54 | border-radius: 20px;
55 | }
56 | .circle .second {
57 | margin-right: 10px;
58 | width: 15px;
59 | height: 15px;
60 | background-color: rgb(8, 111, 32);
61 | border-radius: 20px;
62 | }
63 | .circle .third {
64 | margin-right: 10px;
65 | width: 15px;
66 | height: 15px;
67 | background-color: rgb(227, 143, 47);
68 | border-radius: 20px;
69 | }
70 | .circle .fourth {
71 | margin-right: 10px;
72 | width: 15px;
73 | height: 15px;
74 | background-color: rgb(103, 44, 19);
75 | border-radius: 20px;
76 | }
77 |
78 | #photo2 {
79 | font-family: Arial, Helvetica, sans-serif;
80 | display: flex;
81 | }
82 | #photo2 .container {
83 | margin-right: 10px;
84 | margin-left: 100px;
85 | }
86 | #photo2 .container .card {
87 | margin: 40px;
88 | }
89 | #photo2 .container .card img {
90 | border-radius: 1%;
91 | }
92 | #photo2 .container .card h5 {
93 | color: rgba(33, 30, 30, 0.886);
94 | }
95 | #photo2 .container .card p {
96 | color: rgb(47, 44, 44);
97 | }
98 | #photo2 .container .card .p1 {
99 | color: gray;
100 | }
101 | #photo2 .container .card .p1 .p2 {
102 | color: green;
103 | font-weight: 800;
104 | }/*# sourceMappingURL=example.css.map */
--------------------------------------------------------------------------------
/example.scss:
--------------------------------------------------------------------------------
1 | *{
2 | box-sizing: border-box;
3 | margin: 0;
4 | padding: 0;
5 | }
6 | #about{
7 | font-family: Arial, Helvetica, sans-serif;
8 | text-align: center;
9 | margin: 50px;
10 | h5,p{
11 | color: rgba(0, 0, 0, 0.749);
12 | margin: 15px;
13 | }
14 | }
15 |
16 | #photo {
17 | font-family: Arial, Helvetica, sans-serif;
18 | display: flex;
19 |
20 |
21 | .container {
22 | margin-right: 10px;
23 | margin-left: 100px;
24 |
25 | .card {
26 | margin: 40px;
27 |
28 | img {
29 | border-radius: 1%;
30 | }
31 |
32 | h5 {
33 | color: rgba(33, 30, 30, 0.886);
34 | }
35 |
36 | p {
37 | color: rgb(47, 44, 44);
38 | }
39 |
40 | .p1 {
41 | color: gray;
42 |
43 | .p2 {
44 | color: green;
45 | font-weight: 800;
46 | }
47 | }
48 | }
49 | }
50 | }
51 | .circle {
52 | display: flex;
53 | margin-top: 10px;
54 | .first {
55 | margin-right: 10px;
56 | width: 15px;
57 | height: 15px;
58 | background-color: rgb(41, 208, 230);
59 | border-radius: 20px;
60 | }
61 |
62 | .second {
63 | margin-right: 10px;
64 | width: 15px;
65 | height: 15px;
66 | background-color: rgb(8, 111, 32);
67 | border-radius: 20px;
68 | }
69 |
70 | .third {
71 | margin-right: 10px;
72 | width: 15px;
73 | height: 15px;
74 | background-color: rgb(227, 143, 47);
75 | border-radius: 20px;
76 | }
77 |
78 | .fourth {
79 | margin-right: 10px;
80 | width: 15px;
81 | height: 15px;
82 | background-color: rgb(103, 44, 19);
83 | border-radius: 20px;
84 | }
85 | }
86 | #photo2 {
87 | font-family: Arial, Helvetica, sans-serif;
88 | display: flex;
89 |
90 |
91 | .container {
92 | margin-right: 10px;
93 | margin-left: 100px;
94 |
95 | .card {
96 | margin: 40px;
97 |
98 | img {
99 | border-radius: 1%;
100 | }
101 |
102 | h5 {
103 | color: rgba(33, 30, 30, 0.886);
104 | }
105 |
106 | p {
107 | color: rgb(47, 44, 44);
108 | }
109 |
110 | .p1 {
111 | color: gray;
112 |
113 | .p2 {
114 | color: green;
115 | font-weight: 800;
116 | }
117 | }
118 | }
119 | }
120 | }
--------------------------------------------------------------------------------
/example.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Document
8 |
9 |
10 |
11 |
12 |
13 |
Featured Products
14 |
BESTSELLER PRODUCTS
15 |
Problems trying to resolve the conflict between
16 |
17 |
18 |
19 |
20 |

21 |
22 |
Graphic Design
23 |
English Department
24 |
$16.48 $6.48
25 |
26 |
32 |
33 |
34 |
35 |
36 |

37 |
38 |
Graphic Design
39 |
English Department
40 |
$16.48 $6.48
41 |
42 |
48 |
49 |
50 |
51 |
52 |

53 |
54 |
Graphic Design
55 |
English Department
56 |
$16.48 $6.48
57 |
58 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |

71 |
72 |
Graphic Design
73 |
English Department
74 |
$16.48 $6.48
75 |
76 |
82 |
83 |
84 |
85 |
86 |

87 |
88 |
Graphic Design
89 |
English Department
90 |
$16.48 $6.48
91 |
92 |
98 |
99 |
100 |
101 |
102 |

103 |
104 |
Graphic Design
105 |
English Department
106 |
$16.48 $6.48
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
--------------------------------------------------------------------------------