File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -173,14 +173,14 @@ This should be placed before the header closing tag.
173
173
</div >
174
174
```
175
175
176
- Add an id ` resources ` to the outer ` <div> `
176
+ Add an id ` toolbar ` to the outer ` <div> `
177
177
178
178
### Styling the toolbar
179
179
180
180
First let's remove the bullet from the list of links
181
181
182
182
``` css
183
- #resources ul {
183
+ #toolbar ul {
184
184
list-style : none ;
185
185
margin : 0 ;
186
186
padding : 0 ;
@@ -190,7 +190,7 @@ First let's remove the bullet from the list of links
190
190
and make the elements inline so they sit next to each other
191
191
192
192
``` css
193
- #resources li {
193
+ #toolbar li {
194
194
display : inline-block ;
195
195
padding : 10px ;
196
196
}
@@ -206,7 +206,7 @@ text-align: center;
206
206
The text is now really hard to see. Change the color of the link ...
207
207
208
208
```css
209
- #resources li a {
209
+ #toolbar li a {
210
210
text-decoration : none ;
211
211
color : #e7e7e7 ;
212
212
}
@@ -215,7 +215,7 @@ The text is now really hard to see. Change the color of the link...
215
215
... and make it underline when you hover your mouse over it.
216
216
217
217
``` css
218
- #resources li a :hover {
218
+ #toolbar li a :hover {
219
219
border-bottom : 1px solid ;
220
220
}
221
221
```
You can’t perform that action at this time.
0 commit comments