/****************************************************************** Site Name: .................... Author: Haitham Abdallah Stylesheet: Main Stylesheet Here's where the magic happens. Here, you'll see we are calling in the separate media queries. The base mobile goes outside any query and is called at the beginning, after that we call the rest of the styles inside media queries. ******************************************************************/ // // IMPORTING STYLES // // import normalize @import url('../css/bootstrap.min.css'); @import url('../css/font-awesome.min.css'); @import url('../css/flexslider.css'); @import url('../css/magnific-popup.css'); @import url('../css/owl.carousel.css'); @import url('../css/animate.min.css'); // import mixins @import "_mixins.less"; // styles in base.less @import "_base.less"; @import "_menu.less"; @import "_social.less"; @import "_elements.less"; @import "_footer.less"; @import "_ads.less"; @import "_bars.less"; //@import "_slider.less"; @import "_btns.less"; @import "_clients.less"; @import "_cta.less"; @import "_faq.less"; @import "_gallery.less"; @import "_keepintouch.less"; @import "_subscribe.less"; @import "_team.less"; @import "_video.less"; @import "_vision.less"; @import "_welcome.less"; //@import "_pageinfo.less"; @import "_model.less"; @import "_parts.less"; @import "_prefix.less"; @import "_rtl.less"; /* BASE (MOBILE) SIZE This are the mobile styles. It's what people see on their phones. If you set a great foundation, you won't need to add too many styles in the other stylesheets. Remember, keep it light: Speed is Important. */ /* LARGER MOBILE DEVICES This is for devices like the Galaxy Note or something that's larger than an iPhone but smaller than a tablet. Let's call them tweeners. */ @media only screen and (max-width: 481px) { // styles in 481up.less @import "_481up.less"; } // end of media query /* TABLET & SMALLER LAPTOPS This is the average viewing window. So Desktops, Laptops, and in general anyone not viewing on a mobile device. Here's where you can add resource intensive styles. */ @media only screen and (max-width: 768px) { // styles in 768up.less @import "_768up.less"; } // end of media query /* DESKTOP This is the average viewing window. So Desktops, Laptops, and in general anyone not viewing on a mobile device. Here's where you can add resource intensive styles. */ @media only screen and (min-width: 768px) and (max-width: 991px) { // styles in 1030up.less @import "_1030up.less"; } // end of media query /* LARGE VIEWING SIZE This is for the larger monitors and possibly full screen viewers. */ @media only screen and (min-width: 992px) and (max-width: 1200px) { // styles in 1240up.less @import "_1240up.less"; } // end of media query /* PRINT STYLESHEET Feel free to customize this. Remember to add things that won't make sense to print at the bottom. Things like nav, ads, and forms should be set to display none. */ @media print { @import "_print.less"; } // end of media query