Primer
Primer is the CSS toolkit that power 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 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
Manually
Download the latest release and copy the SCSS files over to your own project. Once your files are in place, jump to the usage guidelines 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.
{
"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.
// Example: All of Primer
@import "primer/scss/primer";
// Example: Individual files
@import "primer/scss/variables";
@import "primer/scss/mixins";
@import "primer/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 Sass:
$ gem install sass
- Latest Grunt CLI:
$ npm install -g grunt-cli
- Node.js and npm
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:
$ npm install
$ bower install
Running locally
From the Terminal, start a local Jekyll server:
$ jekyll serve
Open a second Terminal tab to automatically recompile the Sass files, run autoprefixer, and update our Primer stats file:
$ 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.
$ 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.
{
"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
.
Contributing
By contributing to Primer, you agree to the terms presented in our CLA. More information will be provided here soon.
When contributing changes to Primer, be sure to do the following steps when opening a pull request:
- Bump the version number in
bower.json
(it's purely placebo right now, but it's good habit) andpackage.json
. - 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. Included are directions for opening issues, coding standards, and notes on development.
All HTML and CSS should conform to the style guidelines.
Editor preferences are available in the editor config for easy use in common text editors. Read more and download plugins at http://editorconfig.org.
Versioning
For transparency into our release cycle and in striving to maintain backward compatibility, Primer is maintained under the Semantic Versioning guidelines. 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.