/****************************************************************** Site Name: Braftonium Author: Yvonne Tse 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. Helpful articles on Sass file organization: http://thesassway.com/advanced/modular-css-naming-conventions ******************************************************************/ /********************* IMPORTING PARTIALS These files are needed at the beginning so that we establish all our mixins, functions, and variables that we'll be using across the whole project. *********************/ // normalize: http://necolas.github.io/normalize.css/ @import "partials/normalize"; // Sass variables @import "partials/variables"; // typography @import "partials/typography"; // Sass functions @import "partials/functions"; // import mixins @import "partials/mixins"; // the grid @import "partials/grid"; /********************* IMPORTING MODULES Modules are reusable blocks or elements we use throughout the project. We can break them up as much as we want or just keep them all in one. I mean, you can do whatever you want. The world is your oyster. Unless you hate oysters, then the world is your peanut butter & jelly sandwich. *********************/ // alert boxes @import "modules/alerts"; // buttons @import "modules/buttons"; // forms (inputs & labels) @import "modules/forms"; /********************* 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. *********************/ // styles in base.scss @import "breakpoints/base"; /********************* 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 (min-width: 481px) { // styles in 481up.scss @import "breakpoints/481up"; } // end of media query /********************* TABLET *********************/ @media only screen and (min-width: 601px) { // styles in 768up.scss @import "breakpoints/601up"; } // 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 (min-width: 768px) { // styles in 768up.scss @import "breakpoints/768up"; } // 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: 1030px) { // styles in 1030up.scss @import "breakpoints/1030up"; } // end of media query /********************* LARGE VIEWING SIZE This is for the larger monitors and possibly full screen viewers. *********************/ @media only screen and (min-width: 1367px) { // styles in 1240up.scss @import "breakpoints/1367up"; } // end of media query /********************* EXTRA LARGE VIEWING SIZE This is for the larger monitors and possibly full screen viewers. *********************/ @media only screen and (min-width: 1440px) { // styles in 1240up.scss @import "breakpoints/1440up"; } // end of media query /********************* RETINA (2x RESOLUTION DEVICES) This applies to the retina iPhone (4s) and iPad (2,3) along with other displays with a 2x resolution. You can also create a media query for retina AND a certain size if you want. Go Nuts. *********************/ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) { // styles in 2x.scss @import "breakpoints/2x"; } // 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 { // styles in print.scss @import "partials/print"; } /******************** Begining of Componentized Sass imports ********************/ @import "components/componentVariables"; /********************* Blog Corrections ***********************/ @import "modules/blog"; @import "modules/resources"; /******************* 404 page *******************/ @import "modules/404"; /******************** Custom L3go Block Sass ********************/ @import "components/custom-l3go-blocks/all"; @import "components/custom-l3go-blocks/imgFloatRow"; @import "components/custom-l3go-blocks/interm"; @import "components/custom-l3go-blocks/list"; /******************** Gutenberg block classes ********************/ //@import 'gutenberg/classes';