Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 511 Bytes

CONTRIBUTING.md

File metadata and controls

12 lines (11 loc) · 511 Bytes

Contributing guidelines for the Aternos Games website

Coding style

HTML

(S)CSS

  • Prefer classes over ids, even if the styling might only apply to one item
  • Try to nest maximum 3 layers deep if possible
  • Aggregate multiple selectors that are from the same type, for example h1-h6, in one line
  • Stack multiple selectors from different types, for example div.comment and article, in multiple lines - one line each
  • Opening brackets start in the same line behind the identifier

JS/TS

Vue