CSS
-
CSS… how to use sass and compass: Part Two
Categories: ProgrammingPlease note: for the sake of brevity, when using sass and compass, I refer to them both as compass. Following on from our previous tutorial, I would like to introduce you to @import. @import is a css feature that will allow you to import stylesheets into one another. For example: @import “normalize.css”; body{background:lightblue;width:1000px;margin:auto;} This will…
-
CSS… how to use sass and compass: Part One
Categories: ProgrammingAfter listening to Chris Coyier speak about using Sass in CSS, I read up on it and decided to give it a bash myself. And… oh my god… it… is… frickin’ awesome! I love writing CSS anyway, so I wasn’t really thinking about anything to make it easier or quicker (which Sass does in spades).…