Skip to content
jlavoie13 edited this page Apr 5, 2015 · 3 revisions

Helpful Resources

Guidelines

  • Maintain consistent formatting throughout — Keep scss files clean and easy to maintain.

  • Minimize use of shorthand — This makes it easier to override styles especially from a responsive standpoint.

h1 {
    margin-top: 1em;
    margin-bottom: 1em;
}

instead of

h1 {
    margin: 1em 0;
}
Clone this wiki locally