Open ghost opened 6 years ago
https://github.com/shimabahramnejad/prj-rev-bwfs-dasmoto/blob/master/DasmotoArtCraft/resources/css/style.css#L10-L41
There's a lot of repetition here. Use more general selectors in order to consolidate common/shared styles.
Consider using the universal selector * to apply a style by default to every element and remove the repeated styles from the rest of your CSS rules.
*
* { font-family: Helvetica; } h2 { font-size: 32px; font-weight: bold; color: white; } .brush { background-color:mediumspringgreen; }
oh yes that's true. I have fixed it. Now the updated code is available on Github. Thanks
https://github.com/shimabahramnejad/prj-rev-bwfs-dasmoto/blob/master/DasmotoArtCraft/resources/css/style.css#L10-L41
There's a lot of repetition here. Use more general selectors in order to consolidate common/shared styles.
Consider using the universal selector
*
to apply a style by default to every element and remove the repeated styles from the rest of your CSS rules.