Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. $visual-grid: false;
  2. $visual-grid-color: #ccc;
  3. $visual-grid-index: front;
  4. $visual-grid-opacity: .1;
  5. $max-width: em(1140);
  6.  
  7. // Breakpoints
  8. $mobile-size: em(320);
  9. $tablet-size: em(720);
  10. $desktop-size: em(960);
  11. $largedesktop-size: $max-width;
  12. $mobile: new-breakpoint(min-width $mobile-size max-width $tablet-size 8);
  13. $tablet: new-breakpoint(min-width $tablet-size max-width $desktop-size 10);
  14. $desktop: new-breakpoint(min-width $desktop-size max-width $largedesktop-size 12);
  15. $large: new-breakpoint(min-width $largedesktop-size 12);
  16.  
  17. // Fonts
  18. @import url(//fonts.googleapis.com/css?family=Open+Sans:700,300,400&subset=cyrillic-ext,latin);
  19.  
  20. $base-font-size: 16px;
  21. $base-font-family: 'Open Sans',sans-serif;
  22. $base-line-height: $base-font-size * 1.5;
  23. $unitless-line-height: strip-units($base-font-size / $base-font-size) * 1.2;
  24.  
  25. // Colors
  26. $base-color: #333;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement