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

Setting up a Foundation App project


In this recipe, you will use the Foundation CLI tools to set up a Foundation for Apps project. You should note that Foundation for Apps was built for making responsive web apps. Using Foundation for App to create native-hybrid apps with wrappers, such as Cordova, is not trivial.

Getting ready

This recipe uses the same CLI tool as the one used in the Installing Foundation CLI recipe of Chapter 11, Foundation and Sass. So, reading the Installing Foundation CLI recipe before starting is recommended.

How to do it...

Learn how to set up a Foundation App project:

  1. Install Foundation CLI, as described in the Installing Foundation CLI recipe of Chapter 11, Foundation and Sass.

  2. Run the following command in your console to start a new Foundation project:

    foundation new
    
  3. Choose the A web app (Foundation for Apps) option. The output in your console should look as follows:

  4. The preceding step installs the files for Foundation for Apps in a new folder called recipe4.

  5. Now, run...