scaffolding.less 549 B

1234567891011121314151617181920212223242526272829
  1. // Scaffolding
  2. // Basic and global styles for generating a grid system, structural layout, and page templates
  3. // -------------------------------------------------------------------------------------------
  4. // Body reset
  5. // ----------
  6. body {
  7. margin: 0;
  8. font-family: @baseFontFamily;
  9. font-size: @baseFontSize;
  10. line-height: @baseLineHeight;
  11. color: @textColor;
  12. background-color: @bodyBackground;
  13. }
  14. // Links
  15. // -----
  16. a {
  17. color: @linkColor;
  18. text-decoration: none;
  19. }
  20. a:hover {
  21. color: @linkColorHover;
  22. text-decoration: underline;
  23. }