base.scss 354 B

12345678910111213141516171819202122232425262728
  1. html {
  2. height: 100%;
  3. }
  4. body {
  5. height: 100%;
  6. margin: 0;
  7. font-family: $baseFontFamily;
  8. font-size: $baseFontSize;
  9. line-height: $baseLineHeight;
  10. color: $textColor;
  11. background-color: $bodyBackground;
  12. }
  13. // Links
  14. // -------------------------
  15. a {
  16. color: $linkColor;
  17. text-decoration: none;
  18. }
  19. a:hover,
  20. a:focus {
  21. color: $linkColorHover;
  22. }