Skip to content

Latest commit

 

History

History
59 lines (37 loc) · 1.49 KB

File metadata and controls

59 lines (37 loc) · 1.49 KB

Makerstrap

A Bootstrap theme based on Webmaker's style guide

Usage

bower install makerstrap

How lazy are you?

Real frikin lazy

Includes Font Awesome and Open Sans automagically. Don't use this in production please.

<link rel="stylesheet" href="bower_components/makerstrap/makerstrap.complete.min.css">

Somewhat lazy

Includes Font Awesome and Open Sans from a CDN.

<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700" rel="stylesheet">

<link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">

<link href="bower_components/makerstrap/makerstrap.min.css" rel="stylesheet">

Actually, I'm a ninja, hit me

This is for LESS importing:

@import 'bower_components/makerstrap/less/makerstrap';
@makerstrap-bower-path: '../bower_components';

Contributing

Development environment

  1. Install bower and grunt-cli if you don't have them:
npm install -g bower
npm install -g grunt-cli
  1. Clone this repo: git clone https://github.com/mozilla/makerstrap.git
  2. Run npm install from inside the makerstrap directory.
  3. Run grunt to start the dev server and LESS watch task, navigate to http://localhost:1944/demo to see the demo page.
  4. The main LESS files are in the less/ directory.
  5. Read http://getbootstrap.com/css/#less to orient yourself on extending Bootstrap with LESS.