angelojohngage / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

CSS #6

Open ghost opened 6 years ago

ghost commented 6 years ago

https://github.com/angelojohngage/prj-rev-bwfs-dasmoto/blob/master/Dasmoto/style.css#L15-L37

You're repeating a lot of styles in these three CSS rules.

When you have some styles that need to get applied to several elements, write them in a single rule with a more general selector:

* {
  font-family: Helvetica;
}

.product h2 {
  font-size: 32px;
  font-weight: bold;
  color: white;
}

#brushes {
  background-color: mediumspringgreen;
}