Calii010 / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Font family repetition. #2

Open farishkash opened 6 years ago

farishkash commented 6 years ago

https://github.com/Calii010/prj-rev-bwfs-dasmoto/blob/c29a16cf6f672e52e264bce5e7e2d41668fd3104/Dasmotos/resources/css/style.css#L18

You are using font-family repeatedly throughout your CSS file. If you want to save time, you can use the universal selector in this case.


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

That is nice, I didn't know that.