/2IO80

Redesigned Study Guide for Eindhoven University of Technology

Primary LanguageHTML

Resources

Specific articles

Learning resources

Remarks

  • define colors in the style.scss with the naming convention $color-colorName-modifier (example: $color-grey-light)
  • try to avoid z-index: -1
Last but not least

  • Don't use id's within stylesheets, use them to link elements within html
  • Don't style elements without using a class (on it self or parent) (excluding base styles)
  • Don't set a font-size in pixels, use rem (example: font-size: rem(14px);)
  • Don't set offsets with margin or padding, try one of beneath
    • float
    • vertical-align
    • display: table
    • display: flexbox