ie.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 LESS 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. Base.css contains the main mobile styles and is called in the
  12. header. This way mobile devices get ONLY the styles that apply
  13. to them. No muss, no fuss.
  14. normalize.css and the mixins are also called within that base file
  15. Now we call the files that contain all the CSS. This means
  16. you don't have to maintain an IE stylesheet AND a standard
  17. responsive stylesheet.
  18. */
  19. @import "481up";
  20. @import "768up";
  21. @import "1030up";
  22. /*
  23. you can call the larger styles if you want, but there's really no need
  24. */
  25. /******************************************************************
  26. ADDITIONAL IE FIXES
  27. These fixes are now ONLY seen by IE, so you don't have to worry
  28. about using prefixes, although it's best practice. For more info
  29. on using Modernizr classes, check out this link:
  30. http://www.modernizr.com/docs/
  31. ******************************************************************/
  32. /*
  33. For example, you can use something like:
  34. .no-textshadow .class { ... }
  35. You can also target specific versions by using something like:
  36. .ie7 .class { ... }
  37. */