File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
180180First 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
190190and 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;
206206The 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```
You can’t perform that action at this time.
0 commit comments