_base.scss 466 B

123456789101112131415161718192021222324252627282930313233343536
  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. &:hover,
  19. &:focus {
  20. color: $linkColorHover;
  21. text-decoration: none;
  22. }
  23. &:focus {
  24. @include tab-focus();
  25. }
  26. }
  27. img {
  28. vertical-align: middle;
  29. }