Skip to content

Commit c1d7c9e

Browse files
committed
Merge pull request #150 from quixoticduck/patch-1
Changed the 'resources' ID to 'toolbar'
2 parents a6cd742 + 48bf974 commit c1d7c9e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

html/lesson4/tutorial.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,14 +173,14 @@ This should be placed before the header closing tag.
173173
</div>
174174
```
175175

176-
Add an id `resources` to the outer `<div>`
176+
Add an id `toolbar` to the outer `<div>`
177177

178178
### Styling the toolbar
179179

180180
First let's remove the bullet from the list of links
181181

182182
```css
183-
#resources ul {
183+
#toolbar ul {
184184
list-style: none;
185185
margin: 0;
186186
padding: 0;
@@ -190,7 +190,7 @@ First let's remove the bullet from the list of links
190190
and make the elements inline so they sit next to each other
191191

192192
```css
193-
#resources li {
193+
#toolbar li {
194194
display: inline-block;
195195
padding: 10px;
196196
}
@@ -206,7 +206,7 @@ text-align: center;
206206
The text is now really hard to see. Change the color of the link...
207207

208208
```css
209-
#resources li a {
209+
#toolbar li a {
210210
text-decoration: none;
211211
color: #e7e7e7;
212212
}
@@ -215,7 +215,7 @@ The text is now really hard to see. Change the color of the link...
215215
... and make it underline when you hover your mouse over it.
216216

217217
```css
218-
#resources li a:hover {
218+
#toolbar li a:hover {
219219
border-bottom: 1px solid;
220220
}
221221
```

0 commit comments

Comments
 (0)