| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /******************************************************************
- Site Name:
- Author:
- Stylesheet: IE Stylesheet
- So instead of using the respond.js file to add media query support
- to IE, we're going to use SASS to create an easily readable css file.
- Here, we import all the styles the standard stylesheet gets, only
- without the media queries. No need to worry about editing anything!
- ******************************************************************/
- /*
- Remember, all the BASE styles are called already since IE can
- read those. Below, we need to import only the stuff IE can't
- understand (what's inside the media queries). We also need to
- import the mixins file so LESS can understand the variables.
- */
- /* import grid */
- @import "_grid.less";
- /* import mixins */
- @import "_mixins.less";
- @import "_481up.less";
- @import "_768up.less";
- @import "_1030up.less";
- /*
- you can call the larger styles if you want, but there's really no need
- */
- /******************************************************************
- ADDITIONAL IE FIXES
- These fixes are now ONLY seen by IE, so you don't have to worry
- about using prefixes, although it's best practice. For more info
- on using Modernizr classes, check out this link:
- http://www.modernizr.com/docs/
- ******************************************************************/
- /*
- For example, you can use something like:
- .no-textshadow .class { ... }
- You can also target specific versions by using the classes applied to
- the html element. These can sometimes change, so take a look inside the
- header.php file to see what they are:
- .lt-ie8 .class { ... }
- */
|