summaryrefslogtreecommitdiff
path: root/partials/_base.scss
blob: 1cc52eab05c0657f65a522422b25c0d9036dedeb (plain)
  1. // Colors
  2. //
  3. // (don't use these directly - only referenced by other variables)
  4. //
  5. // No styleguide reference.
  6. $black: black;
  7. $white: white;
  8. $green: darkgreen;
  9. // color model
  10. $colorBase: $black;
  11. $colorBg: $white;
  12. $colorPrimary: $green;
  13. // Typography
  14. //
  15. // No styleguide reference.
  16. // Follow W3C recommendation: http://www.w3.org/QA/Tips/font-size
  17. $baseFontSize: 16px;
  18. $baseFontFamily: Arial, Helvetica, sans-serif;
  19. $baseTextColor: $colorBase;
  20. $linkColor: $colorBase;
  21. $linkHoverColor: $colorPrimary;
  22. $headerColor: $colorPrimary;
  23. // Media
  24. //
  25. // No styleguide reference.
  26. $large-desktop: screen min-width 40em;
  27. // Framework integrations
  28. //
  29. // No styleguide reference.
  30. @import "base-blueprint";