# Primer Primer is the CSS toolkit that powers GitHub's front-end design. It's purposefully limited to common components to provide our developers with the most flexibility, and to keep GitHub uniquely *GitHubby*. It's built with SCSS and available via Bower, so it's easy to include all or part of it within your own project. [**Read the Primer documentation**](http://primercss.io) to learn more. _**Heads up!** We love open source, but Primer is unlikely to add new features that are not used in GitHub.com. It's first and foremost our CSS toolkit. We really love to share though, so hopefully that means we're still friends <3._ ## Contents - [Install](#install) - [Usage](#usage) - [Documentation](#documentation) - [Dependencies](#dependencies) - [Running locally](#running-locally) - [Publishing](#publishing) - [Primer stats](#primer-stats) - [Updating](#updating) - [Contributing](#contributing) - [Versioning](#versioning) - [License](#license) ## Install ### Manually Download the [latest release](https://github.com/primer/primer/releases/latest) and copy the SCSS files over to your own project. Once your files are in place, jump to the [usage guidelines](#usage) for including Primer into your own CSS. ### Bower Install Primer with Bower by adding `primer-css` to your app's `bower.json` (in `github/github`, this is `vendor/assets/bower.json`). Replace `x.x.x` with the latest version number. ``` json { "name": "myapp", "dependencies": { "primer-css": "0.x.x" } } ``` ### Things to know **Hey, GitHubbers!** For GitHub.com, you'll need to `cd` into `vendor/assets` and run `bower install` there. Be sure to commit and push all the changes, including the `bower.json` and everything under `bower_components`. ## Usage Once included, simply `@import` either the master SCSS file, or the individual files as you need them. ```scss // Example: All of Primer @import "primer-css/scss/primer"; // Example: Individual files @import "primer-css/scss/variables"; @import "primer-css/scss/mixins"; @import "primer-css/scss/base"; ``` ## Documentation Primer's documentation is built with Jekyll and published to `http://primercss.io` via the `gh-pages` branch. ### Dependencies You'll need the following installed: - Latest Jekyll (minimum v2.2.0): `$ gem install jekyll` - Latest Rouge: `$ gem install rouge` - Latest Sass: `$ gem install sass` - Latest Grunt CLI: `$ npm install -g grunt-cli` - [Node.js and npm](http://nodejs.org/download/) Chances are you have all this already if you work on `github/github` or similar projects. If you have all those set up, now you can install the dependencies: ```bash $ npm install $ bower install ``` ### Running locally From the Terminal, start a local Jekyll server: ```bash $ jekyll serve ``` Open a second Terminal tab to automatically recompile the Sass files, run autoprefixer, and update our [Primer stats file](#primer-stats): ```bash $ grunt watch ``` Alternatively, you can manually run `grunt` and `jekyll serve` when needed. ### Publishing Use the included Grunt task to generate and publish Primer's docs to the `gh-pages` branch. ```bash $ grunt publish ``` This takes the `_site` directory, generates it's own Git repository there, and publishes the contents to the `gh-pages` branch here on GitHub. Changes are reflected in the hosted docs within a minute or so. ### Primer stats When compiling or watching the Sass files, Primer will automatically generate a `.primer-stats.md` file. This is tracked in the Git repository to provide us historical and contextual information on the changes we introduce. For example, we'll know when the number of selectors or declarations rises sharply within a single change. ## Updating Within `bower.json`, update to a new release by changing the version number that follows the `#` in the dependency URL. ```json { "name": "myapp", "dependencies": { "primer-css": "0.x.x" } } ``` To pull down the updated package, `cd` into `vendor/assets`, and run `bower install`. ``` $ cd vendor/assets $ bower install ``` Check in `bower.json` and all changes under `vendor/assets/bower_components`. ## Development Development of Primer happens in our primary branch, `master`. For stable versions, see the [releases page](https://github.com/primer/primer/releases). `master` will always be up to date with the latest changes, including those which have yet to be released. ## Contributing By contributing to Primer, you agree to the terms presented in our [CLA](CLA.md). *More information will be provided here soon.* When contributing changes to Primer, be sure to do the following steps when opening a pull request: 1. Bump the version number in `bower.json` (it's purely placebo right now, but it's good habit) and `package.json`. 2. Run `grunt css` and commit the changes. This compiles the SCSS to CSS so we can do basic analysis on the number of selectors, file size, etc. In addition, please read through our [contributing guidelines](https://github.com/primer/primer/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development. All HTML and CSS should conform to the [style guidelines](http://primercss.io/guidelines). Editor preferences are available in the [editor config](https://github.com/primer/primer/blob/master/.editorconfig) for easy use in common text editors. Read more and download plugins at . ## Versioning For transparency into our release cycle and in striving to maintain backward compatibility, Primer is maintained under [the Semantic Versioning guidelines](http://semver.org/). Sometimes we screw up, but we'll adhere to those rules whenever possible. ## License Created by and copyright GitHub, Inc. Released under the [MIT license](LICENSE.md).