| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /******************************************************************
- 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 LESS 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
- since it's all bieng pulled from the same source!
- ******************************************************************/
- /*
- Base.css contains the main mobile styles and is called in the
- header. This way mobile devices get ONLY the styles that apply
- to them. No muss, no fuss.
- normalize.css is also called within that base file.
- we'll also need to call the mixins here so they apply to the
- rest of the stylesheets.
- */
- @import "mixins.less";
- /*
- let's now call the FUNCTIONS for these different stylesets.
- We need this so that the styles will load.
- */
- @import "481up.less";
- @import "768up.less";
- @import "1030up.less";
- /*
- you can call the larger styles if you want, but there's really no need
- */
- /*
- Now we call the functions that contain all the CSS. This means
- you don't have to maintain an IE stylesheet AND a standard
- responsive stylesheet.
- */
- .481up();
- .768up();
- .1030up();
- /******************************************************************
- 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 something like:
- .ie7 .class { ... }
- */
|