ie.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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/mixins"; // import mixins
  19. @import "partials/ie_grid"; // import grid
  20. // import everything inside media queries
  21. @import "breakpoints/481up";
  22. @import "breakpoints/768up";
  23. @import "breakpoints/1030up";
  24. /*
  25. you can call the larger styles if you want, but there's really no need
  26. */
  27. /******************************************************************
  28. ADDITIONAL IE FIXES
  29. These fixes are now ONLY seen by IE, so you don't have to worry
  30. about using prefixes, although it's best practice. For more info
  31. on using Modernizr classes, check out this link:
  32. http://www.modernizr.com/docs/
  33. ******************************************************************/
  34. /*
  35. For example, you can use something like:
  36. .no-textshadow .class { ... }
  37. You can also target specific versions by using the classes applied to
  38. the html element. These can sometimes change, so take a look inside the
  39. header.php file to see what they are:
  40. .lt-ie8 .class { ... }
  41. */