Bbg-Spt / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

More concise CSS #6

Open aubreywullschleger opened 6 years ago

aubreywullschleger commented 6 years ago

Simplify! Consider using group selectors for any repeated styles in your CSS. For example, you could use:

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

Then delete all other instances of font-size: 32px;, font-weight: bold;, and color: white; on those specific selectors.