From 8532e93f78a43a6be0d1f244db96b0bc4f525224 Mon Sep 17 00:00:00 2001 From: abd#94 Date: Sun, 19 Jan 2020 02:05:21 +0100 Subject: [PATCH 1/8] here we changed the position --- level-1/step-1/step-1.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/level-1/step-1/step-1.css b/level-1/step-1/step-1.css index 78865286..cda950c6 100755 --- a/level-1/step-1/step-1.css +++ b/level-1/step-1/step-1.css @@ -7,6 +7,7 @@ /* Use float to get this container in its desired location. */ .content-left { + float:left; width: 34%; /* This height is a placeholder. You will need to make some adjustments to get this container to look like the design. */ height: 100px; @@ -18,6 +19,7 @@ .content-mid { width: 66%; + float: right; /* This height is a placeholder. You will need to make some adjustments to get this container to look like the design. */ height: 100px; background: #B0B0B0; @@ -26,6 +28,7 @@ /* Use float to get this container to the bottom of the screen */ .footer { + float:clear; width: 100%; height: 100px; background: #3A3A3A; From 0615d9df370d69bd44788fb4603ec80e03f25317 Mon Sep 17 00:00:00 2001 From: abd#94 Date: Sun, 19 Jan 2020 02:17:52 +0100 Subject: [PATCH 2/8] i have changed --- level-1/step-2/step-2.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/level-1/step-2/step-2.css b/level-1/step-2/step-2.css index 73095f05..3ef14bec 100644 --- a/level-1/step-2/step-2.css +++ b/level-1/step-2/step-2.css @@ -1,19 +1,23 @@ /* Step-2 You can assign padding to all sides of a container by using the padding shorthand property. */ .content-left { - + padding: 20 20 20 20 px; } /* Step 2 You can assign padding to all sides of a container by using the padding shorthand property. */ .header { + padding: 20 20 20 20 px; } /* Step-2 One option to get the container to fill the parent container is to use width: auto; */ .profile-image-container { + height:auto ; + width:auto ; + margin-bottom: auto; background: #96F0F2; } @@ -21,18 +25,26 @@ .profile-links-container { background: #12F3F7; + height:auto ; + width: auto; } /* Step-2 You can either use float left to get this element to in the desired location. */ .logo-container { background: #4F4949; + height:auto ; + width: auto; +float: left; } /* Step-2 You can either use float right to get this element to in the desired location. */ .menu-container { + height:auto ; + width: auto; +float:right; background: #4F4949; } From 1fd912abbcb778db3f3cc8aa752356dbcb85ca36 Mon Sep 17 00:00:00 2001 From: abd#94 Date: Sun, 19 Jan 2020 02:30:50 +0100 Subject: [PATCH 3/8] has changed --- level-1/step-3/step-3.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/level-1/step-3/step-3.css b/level-1/step-3/step-3.css index 5589c8b2..78ce4931 100755 --- a/level-1/step-3/step-3.css +++ b/level-1/step-3/step-3.css @@ -1,17 +1,27 @@ /* Step-3 You can assign padding to all sides of a container by using the padding shorthand property. */ .content-mid { + padding: 80 80 80 80px; } .content-mid-header { + width:auto ; + height:auto ; background: #444; } .content-container { + width:auto ; + height:auto ; } .content { background: #D8D8D8; + width:auto ; + height:auto ; + text-align: center; + padding: 20 20 20 20px; + } From 5913e5501ac1fa619ac94a3cf829e9f69c510824 Mon Sep 17 00:00:00 2001 From: abd#94 Date: Sun, 19 Jan 2020 02:44:34 +0100 Subject: [PATCH 4/8] changed --- level-2/step-2/step-2.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/level-2/step-2/step-2.css b/level-2/step-2/step-2.css index eec2909b..7b2bbb7e 100755 --- a/level-2/step-2/step-2.css +++ b/level-2/step-2/step-2.css @@ -1,14 +1,15 @@ /* Step-2 add a text-align that will align items in the center. */ .main-bottom-section { margin-top: 65px; + text-align: center; /* alignment property */ } /* Step-2 Add a width, height and display property to make these containers look like the design. */ .item { - /*width*/ - /*height*/ - /*display*/ + width + height + display margin: 0 20px 30px; background: #DED6D3; margin-bottom: 30px; From 082dada4cda7613f9fb068c52aa0ef341b3e952b Mon Sep 17 00:00:00 2001 From: abd#94 Date: Wed, 22 Jan 2020 16:54:09 +0100 Subject: [PATCH 5/8] here we chancged --- level-2/step-2/step-2.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/level-2/step-2/step-2.css b/level-2/step-2/step-2.css index 7b2bbb7e..b9d53778 100755 --- a/level-2/step-2/step-2.css +++ b/level-2/step-2/step-2.css @@ -7,9 +7,9 @@ /* Step-2 Add a width, height and display property to make these containers look like the design. */ .item { - width - height - display + width :20; + height : 40; + display :inline; margin: 0 20px 30px; background: #DED6D3; margin-bottom: 30px; From 9c2a1e28bcf9491ca5656db734285208fe478183 Mon Sep 17 00:00:00 2001 From: abd#94 Date: Sat, 1 Feb 2020 13:56:10 +0100 Subject: [PATCH 6/8] here is level 3 step 1 --- level-3/step-1/step-1.css | 1 + 1 file changed, 1 insertion(+) diff --git a/level-3/step-1/step-1.css b/level-3/step-1/step-1.css index 94fbbe10..2d060d3a 100644 --- a/level-3/step-1/step-1.css +++ b/level-3/step-1/step-1.css @@ -4,6 +4,7 @@ width: 100%; height: 200px; position: relative; + color: #F2EFE5; } From 7fa2a9f8204565f7c8718df4aa101e459a6ae86c Mon Sep 17 00:00:00 2001 From: abd#94 Date: Sat, 1 Feb 2020 13:59:37 +0100 Subject: [PATCH 7/8] step 1level 3 --- level-3/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/level-3/index.html b/level-3/index.html index 76bd928e..3fa94890 100755 --- a/level-3/index.html +++ b/level-3/index.html @@ -20,21 +20,21 @@
- shop icon + shop icon
From cb30d08d27c9500f95f8060479703b40b7bee3ac Mon Sep 17 00:00:00 2001 From: abd#94 Date: Sat, 1 Feb 2020 14:09:35 +0100 Subject: [PATCH 8/8] step 2 level 3 --- level-3/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/level-3/index.html b/level-3/index.html index 3fa94890..dcac08fa 100755 --- a/level-3/index.html +++ b/level-3/index.html @@ -42,37 +42,37 @@
- tops + tops
- bottoms + bottoms
- accessories + accessories
- collection + collection
- kicks + kicks
- hats + hats