list.css 790 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. $colors: hotpink deepskyblue firebrick,;
  2. $list: (a,);
  3. $list: ('Helvetica', 'Arial', sans-serif,);
  4. $colors: (
  5. "red",
  6. "blue"
  7. );
  8. $config: (
  9. themes: (
  10. mist: (
  11. header: #dcfac0,
  12. content: #00968b,
  13. footer: #85c79c
  14. ),
  15. $spring: (
  16. header: #f4fac7,
  17. content: #c2454e,
  18. footer: #ffb158
  19. )
  20. )
  21. );
  22. $breakpoint-map: (
  23. small: (
  24. min-width: null,
  25. max-width: 479px,
  26. base-font: 16px,
  27. vertical-rhythm: 1.3
  28. ),
  29. medium: (
  30. min-width: 480px,
  31. max-width: 959px,
  32. base-font: 18px,
  33. vertical-rhythm: 1.414
  34. ),
  35. large: (
  36. min-width: 960px,
  37. max-width: 1099px,
  38. base-font: 18px,
  39. vertical-rhythm: 1.5
  40. ),
  41. xlarge: (
  42. min-width: 1100px,
  43. max-width: null,
  44. base-font: 21px,
  45. vertical-rhythm: 1.618
  46. )
  47. );