Book Image

Sass and Compass Designer's Cookbook

By : Bass Jobsen, Stuart Robson
Book Image

Sass and Compass Designer's Cookbook

By: Bass Jobsen, Stuart Robson

Overview of this book

Sass and Compass Designer's Cookbook helps you to get most out of CSS3 and harness its benefits to create engaging and receptive applications. This book will help you develop faster and reduce the maintenance time for your web development projects by using Sass and Compass. You will learn how to use with CSS frameworks such as Bootstrap and Foundation and understand how to use other libraries of pre-built mixins. You will also learn setting up a development environment with Gulp. This book guides you through all the concepts and gives you practical examples for full understanding.
Table of Contents (23 chapters)
Sass and Compass Designer's Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Introduction


Bourbon is a simple and lightweight mixin library for Sass; it helps you to write CSS faster and easier, without the need for using vendor prefixes. Bourbon is maintained by the design team at Thoughtbot. From the same team, there's also Neat. Neat is a lightweight semantic grid framework for Sass with Bourbon. Finally, there are components and patterns built with Bourbon and Neat called Bitters. They can be used to scaffold styles, variables, and structure for Bourbon projects. In this chapter, you will learn how to use these libraries of the Bourbon family for your Sass projects.

Some example code in the recipes in this chapter import a CSS Reset, as described in the Using a CSS Reset recipe of Chapter 9, Building Layouts with Sass. The following declaration in SCSS code is used to do this:

@import 'base/normalize';