Skip to content

Commit 53c9edf

Browse files
authored
Merge pull request #1619 from ironhack-labs/uros/update/simplify-iterations
Simplify lab iterations and fix grammar
2 parents d28f2f2 + 305aa53 commit 53c9edf

File tree

1 file changed

+27
-19
lines changed

1 file changed

+27
-19
lines changed

README.md

Lines changed: 27 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
**Slack** is a cloud-based set of team collaboration tools and services, or in simpler terms, an online chat application.
88

9-
We use Slack app almost every day to keep our communications with our classmates and the **Ironhack** team, but today we will be focusing on their landing page. In today's lab, we'll recreate Slack's landing page while ensuring it's responsive and adapts well to different screens. You can see the web page that we will be cloning [here](https://www.figma.com/proto/k77VYVA70WcPYRLvg4QmIf/LAB-CSS-Slack-Clone?node-id=125%3A3&scaling=scale-down-width&page-id=125%3A2&starting-point-node-id=125%3A3&hide-ui=1).
9+
We use the Slack app almost every day to keep our communications with our classmates and the **Ironhack** team, but today we will be focusing on their landing page. In today's lab, we'll recreate Slack's landing page while ensuring it's responsive and adapts well to different screens. You can see the web page that we will be cloning [here](https://www.figma.com/proto/k77VYVA70WcPYRLvg4QmIf/LAB-CSS-Slack-Clone?node-id=125%3A3&scaling=scale-down-width&page-id=125%3A2&starting-point-node-id=125%3A3&hide-ui=1).
1010

1111

1212

@@ -42,7 +42,7 @@ The `starter_code` folder contains all the files you'll need. The `images` folde
4242

4343

4444

45-
**The `index.html` already contains all the text and content needed. We will be focusing on the CSS and the styling!**
45+
**The `index.html` already contains all the text and content needed. We will be focusing on the CSS and styling!**
4646

4747

4848

@@ -54,11 +54,11 @@ During each iteration, the first step you should do is to inspect the provided s
5454
5555
## Iteration 0 | Introduction to Figma
5656
57-
The first step during every iteration will be to inspect the design files. These were created using Figma are usually handed of to developers by designers. [Figma](https://www.figma.com/) is a web-based UI (User Interface) design tool, used for creating design prototypes for websites and applications.
57+
The first step during every iteration will be to inspect the design files. These were created using Figma and are usually handed off to developers by designers. [Figma](https://www.figma.com/) is a web-based UI (User Interface) design tool, used for creating design prototypes for websites and applications.
5858
59-
Figma is great because it allows designers and developers to collaborate on projects while also making it simple to share and preview the web page designs.
59+
Figma is great because it allows designers and developers to collaborate on projects while also making it simple to share and preview web page designs.
6060
61-
When you begin working as a developer, it is very likely that your team will use Figma to handoff the designs of the features you will be asked to create. We're going to assume you've never seen Figma before, so don't worry. The following short videos should get you up to speed:
61+
When you begin working as a developer, your team will likely use Figma to hand off to you the designs of the features you will be asked to create. We're going to assume you've never seen Figma before, so don't worry. The following short videos should get you up to speed:
6262
6363
- [What is Figma?](https://www.youtube.com/watch?v=_d8GG2QZYAM)
6464
- [Figma for Frontend developers [ in 5 minutes ]](https://www.youtube.com/watch?v=hbN9RGcQFNU)
@@ -87,7 +87,7 @@ Use the following page screenshot as the guide:
8787

8888
<details>
8989
<summary>Screenshot - Mobile Screens</summary>
90-
<img src="https://education-team-2020.s3.eu-west-1.amazonaws.com/web-dev/m1/lab-flexbox-slack/Home+Page+-+420px.png" width="200px"/>
90+
<img src="https://education-team-2020.s3.eu-west-1.amazonaws.com/web-dev/m1/lab-flexbox-slack/Slack+Home+Page+-+420px.png" width="200px"/>
9191
<br/>
9292

9393
[Back to top](#iteration-1--mobile-screens-width--768px)
@@ -118,13 +118,15 @@ You can inspect the page styles here:
118118

119119
### Iteration 2 | Small Screens (width > 768px and width < 1024px)
120120

121-
Let's start growing our screen size. Focus on small screens (iPads, tablets or bigger smartphones). Notice we have some changes. You need to work on the following ones:
121+
Let's start growing our screen size. In this iteration, you will work on making the website look great on small screens (iPads, tablets, or larger smartphones). You will have to use CSS [media queries](https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries) to apply the style and layout changes. Take a look at the preview and the screenshot to see the changes that are needed. Your task is to work on the following:
122122

123-
- The **header** should go from 1 column to display 2 columns; one with the content and buttons and the other with the image.
124-
- The **company logos** should be displayed in a single row
123+
124+
125+
- The **header** should go from 1 column to display 2 columns: one with the content and buttons, and the other with the image.
126+
- The **company logos** should be displayed in a single row.
125127
- The **images** in the sections in the **main** part should be fully displayed and aligned to the left or right side of the page, respectively.
126-
- The **section "Team large and small rely on Slack"** should have the list items and the buttons displayed horizontally as rows.
127-
- The **subfooter** items, previously displayed as a column, should now be displayed in a single row.
128+
- The **section "Teams large and small rely on Slack"** should have the list items and the buttons displayed horizontally as rows.
129+
- The **sub-footer** items, previously displayed as a column, should now be displayed in a single row.
128130

129131

130132

@@ -140,7 +142,7 @@ Use the following page screenshot as the guide:
140142

141143
<details>
142144
<summary>Screenshot - Small Screens</summary>
143-
<img src="https://education-team-2020.s3.eu-west-1.amazonaws.com/web-dev/m1/lab-flexbox-slack/Home+Page+-+768px.png" width="550px"/>
145+
<img src="https://education-team-2020.s3.eu-west-1.amazonaws.com/web-dev/m1/lab-flexbox-slack/Slack+Home+Page+-+768px.png" width="550px"/>
144146
<br/>
145147

146148
[Back to top](#iteration-2--small-screens-width--768px-and-width--1024px)
@@ -170,12 +172,12 @@ You can inspect the page styles here:
170172

171173
### Iteration 3 | Medium Screens (width > 1024px and width < 1440px)
172174

173-
The easiest change we will have. We'll continue by focusing on the meduim screen size devices (notebooks and bigger tablets):
175+
We'll continue by focusing on devices with medium-sized screens (notebooks and bigger tablets). Similar to the previous iteration, you will have to use CSS media queries to apply the style and layout changes. The most noticeable changes for this viewport size are:
174176

175177

176178

177179
- The **navbar** should now display all the menu links. The previously displayed menu icon should now be hidden.
178-
- The **sections** in the **main** part should now display the content in 2 columns; one column for the heading and text and the other for the image.
180+
- The **sections** in the **main** part should now display the content in 2 columns: one column for the heading and text, and the other for the image.
179181
- The **section "Welcome to your new digital HQ"** should now have the buttons displayed horizontally as rows.
180182

181183

@@ -192,9 +194,10 @@ Use the following page screenshot as the guide:
192194

193195
<details>
194196
<summary>Screenshot - Medium Screens</summary>
195-
<img src="https://education-team-2020.s3.eu-west-1.amazonaws.com/web-dev/m1/lab-flexbox-slack/Home+Page+-+1024px.png" />
197+
<img src="https://education-team-2020.s3.eu-west-1.amazonaws.com/web-dev/m1/lab-flexbox-slack/Slack+Home+Page+-+1024px.png" />
196198
<br/>
197199

200+
198201
[Back to top](#iteration-3--medium-screens-width--1024px-and-width--1440px)
199202
</details>
200203

@@ -219,11 +222,15 @@ You can inspect the page styles here:
219222

220223

221224

222-
### Iteration 4 | Large Screens (width > 1440px)
225+
### BONUS: Iteration 4 | Large Screens (width > 1440px)
226+
227+
Last one! Some small changes and we are done! In this iteration we are targeting large-screen devices such as desktops and laptops:
223228

224-
Last one! Some small changes and we are done! In this iteration we are targeting the large screen devices such as desktops and laptops:
225229

226-
- The **sign up buttons** in the **header** should now be displayed horizontally, next to each other. Additionally, the image shown in the **header** should be centered and fully visible.
230+
231+
- The **signup buttons** in the **header** should now be displayed horizontally, next to each other.
232+
233+
- Additionally, the image shown in the **header** should be centered and fully visible.
227234

228235

229236

@@ -239,10 +246,11 @@ Use the following page screenshot as the guide:
239246

240247
<details>
241248
<summary>Screenshot - Large Screens</summary>
242-
<img src="https://education-team-2020.s3.eu-west-1.amazonaws.com/web-dev/m1/lab-flexbox-slack/Home+Page+-+1440px.png" />
249+
<img src="https://education-team-2020.s3.eu-west-1.amazonaws.com/web-dev/m1/lab-flexbox-slack/Slack+Home+Page+-+1440px.png" />
243250
<br/>
244251

245252

253+
246254
[Back to top](#iteration-4--large-screens-width--1440px)
247255

248256
</details>

0 commit comments

Comments
 (0)