/app-detect-speakers

Application created with intention to detect the speakers connected to device.

Primary LanguageJavaScript

Detect Speakers

Rules followed in this Project.

1. SCSS Rules

1.1 Folder architecture of scss is based on SMACSS viz.

  • Base.
  • Layout.
  • Module.
  • State.
  • Page (Root file viz. custom made ) (which may or may not contains above all scss file) (inspiration from ITCSS).

1.2 All SCSS files from above architecture directory must follow:

  • One class must do one thing properly.
  • BEM seperator for class defining. eg(.navbar--logo__link)
  • Object oriented CSS selector. OOCSS
  • Avoid styling using id.
  • Avoid using element selector directly.
  • Avoid deep selector (not greater than 3).

Concept Explanation.