stjurate / 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/stjurate/prj-rev-bwfs-dasmoto/blob/master/Dasmoto-Arts-Crafts/resources/style.css#L1-L17

Nice job using more general selectors like so that you can consolidate shared styles in one location and keep your CSS tidy and maintainable. 👍

If a style is going to be applied by default, considering using the universal selector * so that you don't have to write a selector listing every single tag on the page.

For example:

* {
  font-weight: Helvetica;
}
stjurate commented 6 years ago

Thank you very for the example. I shall definitely use this option provided as it would save time and it would also mean that this way the style will be applied to all tags and there is no possibility that I am going to miss anything.