jjctabares / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Using group selectors in CSS #4

Open aubreywullschleger opened 7 years ago

aubreywullschleger commented 7 years ago

Simplify and subtlety for errors! In your CSS I would consider using group selectors for any repeated styles, like this:

.brushes, .frames, .paint {
  font-size: 32px;
  font-weight: bold;
  color: white;
}

Then deleting all other instances of font-size: 32px;, font-weight: bold;, and color: white;.

Also, be sure to spell your properties correctly, font-weight is spelled incorrectly lines 17, 24, and 31 in y.our CSS

https://github.com/jjctabares/prj-rev-bwfs-dasmoto/blob/master/Dasmoto/Resources/css/index.css#L17 https://github.com/jjctabares/prj-rev-bwfs-dasmoto/blob/master/Dasmoto/Resources/css/index.css#L24 https://github.com/jjctabares/prj-rev-bwfs-dasmoto/blob/master/Dasmoto/Resources/css/index.css#L31

jjctabares commented 7 years ago

All fixed