I am new to sass and compas, and I am trying to optimise my code. I would like to separate my css files, so I can have page specific css files only included in the pages that require them.
e.g.
<link rel="stylesheet" href="stylesheets/global.css" />
<link rel="stylesheet" href="stylesheets/thispage.css" />
My global sass file contains several partials for fonts, buttons etc. Each of these included partials contain mixins and variable that I want to extend from in my individual page scss files while keeping generated page specific css files seperate.
Is this possible?
@import
you will have access to the variable's and@mixins
inside – Connor Jun 14 '13 at 8:42