ie.scss 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /******************************************************************
  2. Site Name:
  3. Author:
  4. Stylesheet: IE Stylesheet
  5. So instead of using the respond.js file to add media query support
  6. to IE, we're going to use SASS to create an easily readable css file.
  7. Here, we import all the styles the standard stylesheet gets, only
  8. without the media queries. No need to worry about editing anything!
  9. ******************************************************************/
  10. /******************************************************************
  11. IMPORTS & DEPENDENCIES
  12. Remember, all the BASE styles are called already since IE can
  13. read those. Below, we need to import only the stuff IE can't
  14. understand (what's inside the media queries). We also need to
  15. import the mixins file so SASS can understand the variables.
  16. ******************************************************************/
  17. @import "partials/variables"; // import variables
  18. @import "partials/typography"; // import typography
  19. @import "partials/mixins"; // import mixins
  20. @import "partials/ie_grid"; // import grid
  21. // import everything inside media queries
  22. @import "breakpoints/481up";
  23. @import "breakpoints/768up";
  24. @import "breakpoints/1030up";
  25. /*
  26. you can call the larger styles if you want, but there's really no need
  27. */
  28. /******************************************************************
  29. ADDITIONAL IE FIXES
  30. These fixes are now ONLY seen by IE, so you don't have to worry
  31. about using prefixes, although it's best practice. For more info
  32. on using Modernizr classes, check out this link:
  33. http://www.modernizr.com/docs/
  34. ******************************************************************/
  35. /*
  36. For example, you can use something like:
  37. .no-textshadow .class { ... }
  38. You can also target specific versions by using the classes applied to
  39. the html element. These can sometimes change, so take a look inside the
  40. header.php file to see what they are:
  41. .lt-ie8 .class { ... }
  42. */