teresatrow / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Universal styling #4

Open Rodrigap opened 6 years ago

Rodrigap commented 6 years ago

https://github.com/teresatrow/prj-rev-bwfs-dasmoto/blob/f5bb1ac78d905389a6b6fae4583f5286f8738713/Dasmoto/css/style.css#L3

To avoid so much CSS repetition, try using universal styles! I noticed that you have "font-family: Helvetica" in quite a few places. Instead, try removing all of those lines and just adding the following at the very top of your file:

* {
  font-family: Helvetica
}
teresatrow commented 6 years ago

Thanks. The * feature is great to know.