Create gh-pages branch via GitHub
diff --git a/images/code.png b/images/code.png
new file mode 100644
index 0000000..b414519
--- /dev/null
+++ b/images/code.png
Binary files differ
diff --git a/images/pattern.png b/images/pattern.png
new file mode 100644
index 0000000..2357903
--- /dev/null
+++ b/images/pattern.png
Binary files differ
diff --git a/images/tar.png b/images/tar.png
new file mode 100644
index 0000000..1abbdf1
--- /dev/null
+++ b/images/tar.png
Binary files differ
diff --git a/images/top.png b/images/top.png
new file mode 100644
index 0000000..9acb7f5
--- /dev/null
+++ b/images/top.png
Binary files differ
diff --git a/images/zip.png b/images/zip.png
new file mode 100644
index 0000000..6499b00
--- /dev/null
+++ b/images/zip.png
Binary files differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..f531db7
--- /dev/null
+++ b/index.html
@@ -0,0 +1,177 @@
+<!doctype html>
+<!-- The Time Machine GitHub pages theme was designed and developed by Jon Rohan, on Feb 7, 2012. -->
+<!-- Follow him for fun. http://twitter.com/jonrohan. Tail his code on https://github.com/jonrohan -->
+<html>
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+
+ <link rel="stylesheet" href="stylesheets/stylesheet.css" media="screen">
+ <link rel="stylesheet" href="stylesheets/github-dark.css">
+ <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
+ <script type="text/javascript" src="javascripts/script.js"></script>
+
+ <title>gvt</title>
+ <meta name="description" content="The simplest go vendoring tool">
+
+ <meta name="viewport" content="width=device-width,initial-scale=1">
+
+</head>
+
+<body>
+
+ <div class="wrapper">
+ <header>
+ <h1 class="title">gvt</h1>
+ </header>
+ <div id="container">
+ <p class="tagline">The simplest go vendoring tool</p>
+ <div id="main" role="main">
+ <div class="download-bar">
+ <div class="inner">
+ <a href="https://github.com/FiloSottile/gvt/tarball/master" class="download-button tar"><span>Download</span></a>
+ <a href="https://github.com/FiloSottile/gvt/zipball/master" class="download-button zip"><span>Download</span></a>
+ <a href="https://github.com/FiloSottile/gvt" class="code">View gvt on GitHub</a>
+ </div>
+ <span class="blc"></span><span class="trc"></span>
+ </div>
+ <article class="markdown-body">
+ <p><code>gvt</code> is a simple Go vendoring tool made for the GO15VENDOREXPERIMENT, based on <a href="https://github.com/constabulary/gb">gb-vendor</a>.</p>
+
+<p>It lets you easily and "idiomatically" include external dependencies in your repository to get reproducible builds.</p>
+
+<ul>
+<li><p><strong>No need to learn a new tool or format!</strong><br>
+You already know how to use <code>gvt</code>: just run <code>gvt fetch</code> when and like you would run <code>go get</code>. You can imagine what <code>gvt update</code> and <code>gvt delete</code> do.</p></li>
+<li><p><strong>No need to change how you build your project!</strong><br>
+<code>gvt</code> downloads packages to <code>./vendor/...</code>. With <code>GO15VENDOREXPERIMENT=1</code> the stock Go compiler will find and use those dependencies automatically (without import path or GOPATH changes).</p></li>
+<li><p><strong>No need to manually chase, copy or cleanup dependencies!</strong><br>
+<code>gvt</code> works recursively as you would expect, and lets you update vendored dependencies. It also writes a manifest to <code>./vendor/manifest</code> and never touches your system GOPATH. Finally, it strips the VCS metadata so that you can commit the vendored source cleanly.</p></li>
+<li><p><strong>No need for your users and occasional contributors to install or even know about gvt!</strong><br>
+Packages whose dependencies are vendored with <code>gvt</code> are <code>go build</code>-able and <code>go get</code>-able out of the box by Go 1.5 with <code>GO15VENDOREXPERIMENT=1</code> set.</p></li>
+</ul>
+
+<p><em>Note that projects must live within the GOPATH tree in order to be go buildable with the GO15VENDOREXPERIMENT flag.</em></p>
+
+<h2>
+<a id="installation" class="anchor" href="#installation" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Installation</h2>
+
+<pre><code>GO15VENDOREXPERIMENT=1 go get -u github.com/FiloSottile/gvt
+</code></pre>
+
+<h2>
+<a id="usage" class="anchor" href="#usage" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Usage</h2>
+
+<p>You know how to use <code>go get</code>? That's how you use <code>gvt fetch</code>.</p>
+
+<pre><code>$ gvt fetch github.com/fatih/color
+2015/09/05 02:38:06 fetching recursive dependency github.com/mattn/go-isatty
+2015/09/05 02:38:07 fetching recursive dependency github.com/shiena/ansicolor
+
+$ tree -d
+.
+└── vendor
+ └── github.com
+ ├── fatih
+ │ └── color
+ ├── mattn
+ │ └── go-isatty
+ └── shiena
+ └── ansicolor
+ └── ansicolor
+
+9 directories
+
+$ cat > main.go
+package main
+import "github.com/fatih/color"
+func main() {
+ color.Red("Hello, world!")
+}
+
+$ export GO15VENDOREXPERIMENT=1
+$ go build .
+$ ./hello
+Hello, world!
+
+$ git add main.go vendor/ && git commit
+
+</code></pre>
+
+<p>Full usage on <a href="http://godoc.org/github.com/FiloSottile/gvt">GoDoc <img src="https://godoc.org/github.com/FiloSottile/gvt?status.svg" alt="GoDoc"></a></p>
+
+<p>If you use <code>gvt</code> for your projects, it would definitely make my day better if you dropped a line at <code>gvt -at- filippo.io</code> :)</p>
+
+<h2>
+<a id="alternative-not-checking-in-vendored-source" class="anchor" href="#alternative-not-checking-in-vendored-source" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Alternative: not checking in vendored source</h2>
+
+<p>Some developers prefer not to check in the source of the vendored dependencies. In that case you can add lines like these to e.g. your <code>.gitignore</code></p>
+
+<pre><code>vendor/**
+!vendor/manifest
+</code></pre>
+
+<p>When you check out the source again, you can then run <code>gvt restore</code> to fetch all the dependencies at the revisions specified in the <code>vendor/manifest</code> file.</p>
+
+<p>Please consider that this approach has the following consequences:</p>
+
+<ul>
+<li>the package consumer will need gvt to fetch the dependencies</li>
+<li>the dependencies will need to remain available from the source repositories: if the original repository goes down or rewrites history, build reproducibility is lost</li>
+<li>
+<code>go get</code> won't work on your package</li>
+</ul>
+
+<h2>
+<a id="troubleshooting" class="anchor" href="#troubleshooting" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Troubleshooting</h2>
+
+<h3>
+<a id="error-tag-fetch-not-found" class="anchor" href="#error-tag-fetch-not-found" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a><code>error: tag 'fetch' not found.</code>
+</h3>
+
+<p>This kind of errors happens because you have an alias for <code>gvt</code> pointing to <code>git verify-tag</code>.</p>
+
+<p>Run this, or add it to your <code>~/.bashrc</code> / <code>~/.zshrc</code>:</p>
+
+<pre><code>unalias gvt
+</code></pre>
+
+<h3>
+<a id="go-build-cant-find-the-vendored-package" class="anchor" href="#go-build-cant-find-the-vendored-package" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a><code>go build</code> can't find the vendored package</h3>
+
+<p>Make sure you set <code>GO15VENDOREXPERIMENT=1</code>.</p>
+
+<p>Also note that GO15VENDOREXPERIMENT does not apply when outside the GOPATH tree. That is, your project must be somewhere in a subfolder of <code>$GOPATH</code>.</p>
+ </article>
+ </div>
+ </div>
+ <footer>
+ <div class="owner">
+ <p><a href="https://github.com/FiloSottile" class="avatar"><img src="https://avatars3.githubusercontent.com/u/1225294?v=3&s=60" width="48" height="48"></a> <a href="https://github.com/FiloSottile">FiloSottile</a> maintains <a href="https://github.com/FiloSottile/gvt">gvt</a></p>
+
+
+ </div>
+ <div class="creds">
+ <small>This page generated using <a href="https://pages.github.com/">GitHub Pages</a><br>theme by <a href="https://twitter.com/jonrohan/">Jon Rohan</a></small>
+ </div>
+ </footer>
+ </div>
+ <div class="current-section">
+ <a href="#top">Scroll to top</a>
+ <a href="https://github.com/FiloSottile/gvt/tarball/master" class="tar">tar</a><a href="https://github.com/FiloSottile/gvt/zipball/master" class="zip">zip</a><a href="" class="code">source code</a>
+ <p class="name"></p>
+ </div>
+
+ <script type="text/javascript">
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+ </script>
+ <script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-37225193-1");
+ pageTracker._trackPageview();
+ } catch(err) {}
+ </script>
+
+</body>
+</html>
diff --git a/javascripts/script.js b/javascripts/script.js
new file mode 100644
index 0000000..2f08550
--- /dev/null
+++ b/javascripts/script.js
@@ -0,0 +1,52 @@
+(function($) {
+$(document).ready(function(){
+
+ // putting lines by the pre blocks
+ $("pre").each(function(){
+ var pre = $(this).text().split("\n");
+ var lines = new Array(pre.length+1);
+ for(var i = 0; i < pre.length; i++) {
+ var wrap = Math.floor(pre[i].split("").length / 70)
+ if (pre[i]==""&&i==pre.length-1) {
+ lines.splice(i, 1);
+ } else {
+ lines[i] = i+1;
+ for(var j = 0; j < wrap; j++) {
+ lines[i] += "\n";
+ }
+ }
+ }
+ $(this).before("<pre class='lines'>" + lines.join("\n") + "</pre>");
+ });
+
+ var headings = [];
+
+ var collectHeaders = function(){
+ headings.push({"top":$(this).offset().top - 15,"text":$(this).text()});
+ }
+
+ if($(".markdown-body h1").length > 1) $(".markdown-body h1").each(collectHeaders)
+ else if($(".markdown-body h2").length > 1) $(".markdown-body h2").each(collectHeaders)
+ else if($(".markdown-body h3").length > 1) $(".markdown-body h3").each(collectHeaders)
+
+ $(window).scroll(function(){
+ if(headings.length==0) return true;
+ var scrolltop = $(window).scrollTop() || 0;
+ if(headings[0] && scrolltop < headings[0].top) {
+ $(".current-section").css({"opacity":0,"visibility":"hidden"});
+ return false;
+ }
+ $(".current-section").css({"opacity":1,"visibility":"visible"});
+ for(var i in headings) {
+ if(scrolltop >= headings[i].top) {
+ $(".current-section .name").text(headings[i].text);
+ }
+ }
+ });
+
+ $(".current-section a").click(function(){
+ $(window).scrollTop(0);
+ return false;
+ })
+});
+})(jQuery)
\ No newline at end of file
diff --git a/params.json b/params.json
new file mode 100644
index 0000000..90dbf55
--- /dev/null
+++ b/params.json
@@ -0,0 +1 @@
+{"name":"gvt","tagline":"The simplest go vendoring tool","body":"`gvt` is a simple Go vendoring tool made for the GO15VENDOREXPERIMENT, based on [gb-vendor](https://github.com/constabulary/gb).\r\n\r\nIt lets you easily and \"idiomatically\" include external dependencies in your repository to get reproducible builds.\r\n\r\n * **No need to learn a new tool or format!** \r\n You already know how to use `gvt`: just run `gvt fetch` when and like you would run `go get`. You can imagine what `gvt update` and `gvt delete` do.\r\n\r\n * **No need to change how you build your project!** \r\n `gvt` downloads packages to `./vendor/...`. With `GO15VENDOREXPERIMENT=1` the stock Go compiler will find and use those dependencies automatically (without import path or GOPATH changes).\r\n\r\n * **No need to manually chase, copy or cleanup dependencies!** \r\n `gvt` works recursively as you would expect, and lets you update vendored dependencies. It also writes a manifest to `./vendor/manifest` and never touches your system GOPATH. Finally, it strips the VCS metadata so that you can commit the vendored source cleanly.\r\n\r\n * **No need for your users and occasional contributors to install or even know about gvt!** \r\n Packages whose dependencies are vendored with `gvt` are `go build`-able and `go get`-able out of the box by Go 1.5 with `GO15VENDOREXPERIMENT=1` set.\r\n\r\n*Note that projects must live within the GOPATH tree in order to be go buildable with the GO15VENDOREXPERIMENT flag.*\r\n\r\n\r\n## Installation\r\n\r\n```\r\nGO15VENDOREXPERIMENT=1 go get -u github.com/FiloSottile/gvt\r\n```\r\n\r\n## Usage\r\n\r\nYou know how to use `go get`? That's how you use `gvt fetch`.\r\n\r\n```\r\n$ gvt fetch github.com/fatih/color\r\n2015/09/05 02:38:06 fetching recursive dependency github.com/mattn/go-isatty\r\n2015/09/05 02:38:07 fetching recursive dependency github.com/shiena/ansicolor\r\n\r\n$ tree -d\r\n.\r\n└── vendor\r\n └── github.com\r\n ├── fatih\r\n │ └── color\r\n ├── mattn\r\n │ └── go-isatty\r\n └── shiena\r\n └── ansicolor\r\n └── ansicolor\r\n\r\n9 directories\r\n\r\n$ cat > main.go\r\npackage main\r\nimport \"github.com/fatih/color\"\r\nfunc main() {\r\n color.Red(\"Hello, world!\")\r\n}\r\n\r\n$ export GO15VENDOREXPERIMENT=1\r\n$ go build .\r\n$ ./hello\r\nHello, world!\r\n\r\n$ git add main.go vendor/ && git commit\r\n\r\n```\r\n\r\nFull usage on [GoDoc ](http://godoc.org/github.com/FiloSottile/gvt)\r\n\r\nIf you use `gvt` for your projects, it would definitely make my day better if you dropped a line at `gvt -at- filippo.io` :)\r\n\r\n## Alternative: not checking in vendored source\r\n\r\nSome developers prefer not to check in the source of the vendored dependencies. In that case you can add lines like these to e.g. your `.gitignore`\r\n\r\n vendor/**\r\n !vendor/manifest\r\n\r\nWhen you check out the source again, you can then run `gvt restore` to fetch all the dependencies at the revisions specified in the `vendor/manifest` file.\r\n\r\nPlease consider that this approach has the following consequences:\r\n\r\n * the package consumer will need gvt to fetch the dependencies\r\n * the dependencies will need to remain available from the source repositories: if the original repository goes down or rewrites history, build reproducibility is lost\r\n * `go get` won't work on your package\r\n\r\n## Troubleshooting\r\n\r\n### `error: tag 'fetch' not found.`\r\n\r\nThis kind of errors happens because you have an alias for `gvt` pointing to `git verify-tag`.\r\n\r\nRun this, or add it to your `~/.bashrc` / `~/.zshrc`:\r\n\r\n```\r\nunalias gvt\r\n```\r\n\r\n### `go build` can't find the vendored package\r\n\r\nMake sure you set `GO15VENDOREXPERIMENT=1`.\r\n\r\nAlso note that GO15VENDOREXPERIMENT does not apply when outside the GOPATH tree. That is, your project must be somewhere in a subfolder of `$GOPATH`.","google":"UA-37225193-1","note":"Don't delete this file! It's used internally to help with page regeneration."}
\ No newline at end of file
diff --git a/stylesheets/github-dark.css b/stylesheets/github-dark.css
new file mode 100644
index 0000000..0c393bf
--- /dev/null
+++ b/stylesheets/github-dark.css
@@ -0,0 +1,116 @@
+/*
+ Copyright 2014 GitHub Inc.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+*/
+
+.pl-c /* comment */ {
+ color: #969896;
+}
+
+.pl-c1 /* constant, markup.raw, meta.diff.header, meta.module-reference, meta.property-name, support, support.constant, support.variable, variable.other.constant */,
+.pl-s .pl-v /* string variable */ {
+ color: #0099cd;
+}
+
+.pl-e /* entity */,
+.pl-en /* entity.name */ {
+ color: #9774cb;
+}
+
+.pl-s .pl-s1 /* string source */,
+.pl-smi /* storage.modifier.import, storage.modifier.package, storage.type.java, variable.other, variable.parameter.function */ {
+ color: #ddd;
+}
+
+.pl-ent /* entity.name.tag */ {
+ color: #7bcc72;
+}
+
+.pl-k /* keyword, storage, storage.type */ {
+ color: #cc2372;
+}
+
+.pl-pds /* punctuation.definition.string, string.regexp.character-class */,
+.pl-s /* string */,
+.pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */,
+.pl-sr /* string.regexp */,
+.pl-sr .pl-cce /* string.regexp constant.character.escape */,
+.pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */,
+.pl-sr .pl-sre /* string.regexp source.ruby.embedded */ {
+ color: #3c66e2;
+}
+
+.pl-v /* variable */ {
+ color: #fb8764;
+}
+
+.pl-id /* invalid.deprecated */ {
+ color: #e63525;
+}
+
+.pl-ii /* invalid.illegal */ {
+ background-color: #e63525;
+ color: #f8f8f8;
+}
+
+.pl-sr .pl-cce /* string.regexp constant.character.escape */ {
+ color: #7bcc72;
+ font-weight: bold;
+}
+
+.pl-ml /* markup.list */ {
+ color: #c26b2b;
+}
+
+.pl-mh /* markup.heading */,
+.pl-mh .pl-en /* markup.heading entity.name */,
+.pl-ms /* meta.separator */ {
+ color: #264ec5;
+ font-weight: bold;
+}
+
+.pl-mq /* markup.quote */ {
+ color: #00acac;
+}
+
+.pl-mi /* markup.italic */ {
+ color: #ddd;
+ font-style: italic;
+}
+
+.pl-mb /* markup.bold */ {
+ color: #ddd;
+ font-weight: bold;
+}
+
+.pl-md /* markup.deleted, meta.diff.header.from-file */ {
+ background-color: #ffecec;
+ color: #bd2c00;
+}
+
+.pl-mi1 /* markup.inserted, meta.diff.header.to-file */ {
+ background-color: #eaffea;
+ color: #55a532;
+}
+
+.pl-mdr /* meta.diff.range */ {
+ color: #9774cb;
+ font-weight: bold;
+}
+
+.pl-mo /* meta.output */ {
+ color: #264ec5;
+}
+
diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css
new file mode 100644
index 0000000..abf2d27
--- /dev/null
+++ b/stylesheets/stylesheet.css
@@ -0,0 +1,966 @@
+/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
+
+/**
+ * 1. Set default font family to sans-serif.
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
+ * user zoom.
+ */
+
+html {
+ font-family: sans-serif; /* 1 */
+ -ms-text-size-adjust: 100%; /* 2 */
+ -webkit-text-size-adjust: 100%; /* 2 */
+}
+
+/**
+ * Remove default margin.
+ */
+
+body {
+ margin: 0;
+}
+
+/* HTML5 display definitions
+ ========================================================================== */
+
+/**
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
+ * Correct `block` display not defined for `main` in IE 11.
+ */
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+nav,
+section,
+summary {
+ display: block;
+}
+
+/**
+ * 1. Correct `inline-block` display not defined in IE 8/9.
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
+ */
+
+audio,
+canvas,
+progress,
+video {
+ display: inline-block; /* 1 */
+ vertical-align: baseline; /* 2 */
+}
+
+/**
+ * Prevent modern browsers from displaying `audio` without controls.
+ * Remove excess height in iOS 5 devices.
+ */
+
+audio:not([controls]) {
+ display: none;
+ height: 0;
+}
+
+/**
+ * Address `[hidden]` styling not present in IE 8/9/10.
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
+ */
+
+[hidden],
+template {
+ display: none;
+}
+
+/* Links
+ ========================================================================== */
+
+/**
+ * Remove the gray background color from active links in IE 10.
+ */
+
+a {
+ background: transparent;
+}
+
+/**
+ * Improve readability when focused and also mouse hovered in all browsers.
+ */
+
+a:active,
+a:hover {
+ outline: 0;
+}
+
+/* Text-level semantics
+ ========================================================================== */
+
+/**
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
+ */
+
+abbr[title] {
+ border-bottom: 1px dotted;
+}
+
+/**
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
+ */
+
+b,
+strong {
+ font-weight: bold;
+}
+
+/**
+ * Address styling not present in Safari and Chrome.
+ */
+
+dfn {
+ font-style: italic;
+}
+
+/**
+ * Address variable `h1` font-size and margin within `section` and `article`
+ * contexts in Firefox 4+, Safari, and Chrome.
+ */
+
+h1 {
+ font-size: 2em;
+ margin: 0.67em 0;
+}
+
+/**
+ * Address styling not present in IE 8/9.
+ */
+
+mark {
+ background: #ff0;
+ color: #000;
+}
+
+/**
+ * Address inconsistent and variable font size in all browsers.
+ */
+
+small {
+ font-size: 80%;
+}
+
+/**
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
+ */
+
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+
+sup {
+ top: -0.5em;
+}
+
+sub {
+ bottom: -0.25em;
+}
+
+/* Embedded content
+ ========================================================================== */
+
+/**
+ * Remove border when inside `a` element in IE 8/9/10.
+ */
+
+img {
+ border: 0;
+}
+
+/**
+ * Correct overflow not hidden in IE 9/10/11.
+ */
+
+svg:not(:root) {
+ overflow: hidden;
+}
+
+/* Grouping content
+ ========================================================================== */
+
+/**
+ * Address margin not present in IE 8/9 and Safari.
+ */
+
+figure {
+ margin: 1em 40px;
+}
+
+/**
+ * Address differences between Firefox and other browsers.
+ */
+
+hr {
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+ height: 0;
+}
+
+/**
+ * Contain overflow in all browsers.
+ */
+
+pre {
+ overflow: auto;
+}
+
+/**
+ * Address odd `em`-unit font size rendering in all browsers.
+ */
+
+code,
+kbd,
+pre,
+samp {
+ font-family: monospace, monospace;
+ font-size: 1em;
+}
+
+/* Forms
+ ========================================================================== */
+
+/**
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
+ * styling of `select`, unless a `border` property is set.
+ */
+
+/**
+ * 1. Correct color not being inherited.
+ * Known issue: affects color of disabled elements.
+ * 2. Correct font properties not being inherited.
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
+ */
+
+button,
+input,
+optgroup,
+select,
+textarea {
+ color: inherit; /* 1 */
+ font: inherit; /* 2 */
+ margin: 0; /* 3 */
+}
+
+/**
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
+ */
+
+button {
+ overflow: visible;
+}
+
+/**
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
+ * All other form control elements do not inherit `text-transform` values.
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
+ * Correct `select` style inheritance in Firefox.
+ */
+
+button,
+select {
+ text-transform: none;
+}
+
+/**
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
+ * and `video` controls.
+ * 2. Correct inability to style clickable `input` types in iOS.
+ * 3. Improve usability and consistency of cursor style between image-type
+ * `input` and others.
+ */
+
+button,
+html input[type="button"], /* 1 */
+input[type="reset"],
+input[type="submit"] {
+ -webkit-appearance: button; /* 2 */
+ cursor: pointer; /* 3 */
+}
+
+/**
+ * Re-set default cursor for disabled elements.
+ */
+
+button[disabled],
+html input[disabled] {
+ cursor: default;
+}
+
+/**
+ * Remove inner padding and border in Firefox 4+.
+ */
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+ border: 0;
+ padding: 0;
+}
+
+/**
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
+ * the UA stylesheet.
+ */
+
+input {
+ line-height: normal;
+}
+
+/**
+ * It's recommended that you don't attempt to style these elements.
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
+ *
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
+ * 2. Remove excess padding in IE 8/9/10.
+ */
+
+input[type="checkbox"],
+input[type="radio"] {
+ box-sizing: border-box; /* 1 */
+ padding: 0; /* 2 */
+}
+
+/**
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
+ * `font-size` values of the `input`, it causes the cursor style of the
+ * decrement button to change from `default` to `text`.
+ */
+
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+ height: auto;
+}
+
+/**
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
+ * (include `-moz` to future-proof).
+ */
+
+input[type="search"] {
+ -webkit-appearance: textfield; /* 1 */
+ -moz-box-sizing: content-box;
+ -webkit-box-sizing: content-box; /* 2 */
+ box-sizing: content-box;
+}
+
+/**
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
+ * Safari (but not Chrome) clips the cancel button when the search input has
+ * padding (and `textfield` appearance).
+ */
+
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+/**
+ * Define consistent border, margin, and padding.
+ */
+
+fieldset {
+ border: 1px solid #c0c0c0;
+ margin: 0 2px;
+ padding: 0.35em 0.625em 0.75em;
+}
+
+/**
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
+ */
+
+legend {
+ border: 0; /* 1 */
+ padding: 0; /* 2 */
+}
+
+/**
+ * Remove default vertical scrollbar in IE 8/9/10/11.
+ */
+
+textarea {
+ overflow: auto;
+}
+
+/**
+ * Don't inherit the `font-weight` (applied by a rule above).
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
+ */
+
+optgroup {
+ font-weight: bold;
+}
+
+/* Tables
+ ========================================================================== */
+
+/**
+ * Remove most spacing between table cells.
+ */
+
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+td,
+th {
+ padding: 0;
+}
+
+
+/* Style */
+
+body {
+ font-size: 15px;
+ font-family: Arial, Arial, Helvetica, sans-serif;
+ line-height: 1.5;
+ background: #D1D1D1;
+}
+
+a {
+ color: #63a52a;
+ text-decoration: none;
+ transition: opacity ease-in-out 0.3s;
+ -webkit-transition: opacity ease-in-out 0.3s; /* Safari <=6.1, Android <= 4.3 */
+}
+
+a:hover {
+ text-decoration: underline;
+ color: #90D355;
+}
+
+h1.title {
+ margin: 30px 20px 10px;
+ font-size: 60px;
+ font-weight: bold;
+ font-style: italic;
+ font-family:Georgia, serif;
+ text-align: center;
+}
+
+.wrapper {
+ width: 675px;
+ margin: 0 auto;
+}
+
+#container {
+ border: 1px solid #2a2a2a;
+ background: #ddd url(../images/pattern.png);
+ box-shadow: 0 0 5px #b1b1b1;
+}
+
+p.tagline {
+ padding: 20px 20px 0;
+ color: #fff;
+ font-size: 17px;
+}
+
+#main {
+ margin-top: 20px;
+ padding: 0 20px 90px;
+ background-color: #fff;
+}
+
+.download-bar {
+ background: #222;
+ border: 5px solid #444;
+ padding: 10px;
+ margin: 0 -35px 20px;
+ position: relative;
+}
+
+.download-bar .inner {
+ overflow: hidden;
+}
+
+.download-bar .watch-fork iframe {
+ display: block;
+ float: left;
+ border-right: 1px solid #ddd;
+ padding-right: 5px;
+}
+.download-bar .watch-fork iframe.last {
+ border-right: 0 none;
+ padding-right: 0;
+ padding-left: 5px;
+ border-left: 1px solid #fff;
+}
+.download-bar .watch-fork {
+ overflow: hidden;
+ float: right;
+ background-color: #eee;
+ padding: 5px;
+ border-radius: 3px;
+}
+
+.download-bar .blc {
+ border: 10px solid black;
+ border-color: transparent transparent black;
+ width: 0;
+ height: 0;
+ display: block;
+ position: absolute;
+ bottom: -15px;
+ left: 0;
+ transform: rotate(45deg);
+ -ms-transform: rotate(45deg); /* IE9 */
+ -webkit-transform: rotate(45deg); /* 2014 current */
+}
+
+.download-bar .trc {
+ border: 10px solid black;
+ border-color: black transparent transparent;
+ width: 0;
+ height: 0;
+ display: block;
+ position: absolute;
+ top: -15px;
+ right: 0;
+ transform: rotate(45deg);
+ -ms-transform: rotate(45deg); /* IE9 */
+ -webkit-transform: rotate(45deg); /* 2014 current */
+}
+
+.download-bar .avatar {
+ border: 1px solid black;
+ display: block;
+ padding: 4px;
+ float: left;
+}
+
+.download-bar .avatar img {
+ display: block;
+}
+
+.download-bar a.code {
+ background: transparent url(../images/code.png) no-repeat 0 2px;
+ padding-left: 35px;
+ margin-top: 8px;
+ display: block;
+ float: left;
+ text-indent: 0;
+ width: auto;
+ height: auto;
+ opacity: 1;
+ filter:alpha(opacity=100); /* IE 5-7 */
+}
+
+.current-section {
+ position: fixed;
+ top: 0;
+ left: 50%;
+ width: 693px;
+ margin-left: -352px;
+ background: #222;
+ border: 5px solid #444;
+ color: #fff;
+ opacity: 0;
+ visibility: hidden;
+ transition: opacity ease-in-out 0.3s;
+ -webkit-transition: opacity ease-in-out 0.3s; /* Safari <=6.1, Android <= 4.3 */
+}
+
+.current-section p {
+ padding: 5px 27px;
+ font-size: 24px;
+ font-weight: bold;
+}
+
+.current-section a {
+ float: right;
+ text-indent: -10000px;
+ background: transparent url(../images/top.png) no-repeat 0 0;
+ width: 20px;
+ height: 20px;
+ opacity: 0.8;
+ margin-right: 12px;
+ margin-top: 12px;
+ opacity: 0.8;
+ filter:alpha(opacity=80); /* IE 5-7 */
+ transition: opacity ease-in-out 0.3s;
+ -webkit-transition: opacity ease-in-out 0.3s; /* Safari <=6.1, Android <= 4.3 */
+}
+
+.current-section a:hover {
+ opacity: 1;
+ filter:alpha(opacity=100); /* IE 5-7 */
+}
+
+.current-section a.zip {
+ margin-right: 8px;
+}
+
+a.zip,
+a.zip span {
+ background: transparent url(../images/zip.png) no-repeat 0 0;
+ width: 30px;
+ height: 21px;
+ display: inline-block;
+ text-indent: -10000px;
+ opacity: 0.8;
+ filter:alpha(opacity=80); /* IE 5-7 */
+ transition: opacity ease-in-out 0.3s;
+ -webkit-transition: opacity ease-in-out 0.3s; /* Safari <=6.1, Android <= 4.3 */
+}
+
+a.tar,
+a.tar span {
+ background: transparent url(../images/tar.png) no-repeat 0 0;
+ width: 30px;
+ height: 21px;
+ display: inline-block;
+ text-indent: -10000px;
+ opacity: 0.8;
+ filter:alpha(opacity=80); /* IE 5-7 */
+ transition: opacity ease-in-out 0.3s;
+ -webkit-transition: opacity ease-in-out 0.3s; /* Safari <=6.1, Android <= 4.3 */
+}
+
+a.code {
+ background: transparent url(../images/code.png) no-repeat 0 2px;
+ width: 30px;
+ height: 21px;
+ display: block;
+ display: inline-block;
+ text-indent: -10000px;
+ opacity: 0.8;
+ filter:alpha(opacity=80); /* IE 5-7 */
+ transition: opacity ease-in-out 0.3s;
+ -webkit-transition: opacity ease-in-out 0.3s; /* Safari <=6.1, Android <= 4.3 */
+}
+
+a.zip:hover,
+a.tar:hover,
+a.code:hover {
+ opacity: 1;
+ filter:alpha(opacity=100);
+}
+
+a.download-button {
+ border: 1px solid black;
+ border-radius: 3px;
+ display: inline-block;
+ text-indent: 0!important;
+ width: auto;
+ float: right;
+ background: #999; /* for non-css3 browsers */
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#37ADD4', endColorstr='#1B657E'); /* IE <= 9 */
+ background: -webkit-gradient(linear, left top, left bottom, from(#37ADD4), to(#1B657E)); /* ancient webkit browsers */
+ background: -webkit-linear-gradient(top, #37ADD4, #1B657E); /* Safari <=6.1, Android <= 4.3 */
+ background: linear-gradient(to bottom, #37ADD4, #1B657E);
+ height: auto;
+ margin-left: 10px;
+}
+
+a.download-button span {
+ background-position: 10px 5px;
+ width: auto;
+ height: auto;
+ padding: 5px 10px;
+ padding-left: 45px;
+ display: inline-block;
+ text-indent: 0!important;
+ color: #fff;
+}
+
+footer {
+ margin-bottom: 60px;
+ padding-bottom: 60px;
+}
+
+footer .owner {
+ background: #222;
+ border: 5px solid #444;
+ padding: 5px 15px;
+ margin: -67px -10px 35px;
+ color: #d6d6d6;
+}
+
+footer .creds small {
+ float: right;
+ font-size: 10px;
+ text-align: right;
+ margin-left: 15px;
+}
+
+footer .owner .avatar {
+ background-color: #666;
+ display: block;
+ margin: -19px 10px 0 0;
+ width: 60px;
+ float: left;
+}
+
+footer .owner img {
+ display: block;
+ border: 1px solid #2a2a2a;
+ margin: 5px;
+}
+
+footer .owner p {
+ font-family:Georgia, serif;
+}
+
+footer .owner p a {
+ font-size: 16px;
+ font-style: italic;
+}
+
+/* Markdown */
+.markdown-body h1,
+.markdown-body h2,
+.markdown-body h3,
+.markdown-body h4,
+.markdown-body h5,
+.markdown-body h6,
+.markdown-body p,
+.markdown-body pre,
+.markdown-body ul,
+.markdown-body ol,
+.markdown-body dl,
+.markdown-body table,
+.markdown-body blockquote {
+ margin-bottom: 20px;
+}
+
+.markdown-body h1,
+.markdown-body h2,
+.markdown-body h3,
+.markdown-body h4,
+.markdown-body h5,
+.markdown-body h6 {
+ font-weight: bold;
+}
+
+.markdown-body h1 {
+ font-size: 28px;
+}
+
+.markdown-body h2 {
+ font-size: 24px;
+ color: #557398;
+}
+
+.markdown-body h3 {
+ font-size: 20px;
+}
+
+.markdown-body h4 {
+ font-size: 18px;
+}
+
+.markdown-body h5 {
+ font-size: 16px;
+}
+
+.markdown-body pre {
+ padding: 10px 70px 10px 0;
+ margin-left: -20px;
+ margin-right: -20px;
+ font-family: 'Monaco', 'Lucida Console', monospace;
+ font-size: 13px;
+ line-height: 20px;
+ box-shadow: inset 0 0 5px #000;
+ word-wrap: break-word;
+ background-color:#3b3b3b;
+ color: #d6d6d6;
+}
+
+.markdown-body pre.lines {
+ font-size: 12px;
+ margin:0 10px 0 -20px;
+ padding: 10px;
+ float: left;
+ display: block;
+ text-align: right;
+ box-shadow: none;
+ background-color:#2a2a2a;
+ color: #d6d6d6;
+}
+
+.markdown-body ul,
+.markdown-body ol {
+ padding-left: 30px;
+}
+
+.markdown-body ul {
+ list-style-type: disc;
+}
+
+.markdown-body ol {
+ list-style-type: decimal;
+}
+
+.markdown-body li,
+.markdown-body li p,
+.markdown-body dd,
+.markdown-body dd p {
+ margin-bottom: 10px;
+}
+
+.markdown-body li pre,
+.markdown-body li pre.lines,
+.markdown-body dd pre,
+.markdown-body dd pre.lines {
+ margin-left: -35px;
+}
+
+.markdown-body dt {
+ font-weight: bold;
+ font-style: italic;
+}
+
+.markdown-body dd {
+ margin-left: 15px;
+}
+
+.markdown-body table {
+ width: 673px;
+ margin-left: -20px;
+ margin-right: -20px;
+}
+
+.markdown-body tbody {
+ border-top: 2px solid #557398;
+ border-bottom: 2px solid #557398;
+ background-color: #EBEFF4;
+}
+
+.markdown-body table td * {
+ margin: 0;
+}
+
+.markdown-body td {
+ border-right: 1px solid #557398;
+ border-bottom: 1px solid #557398;
+ padding: 5px;
+}
+
+.markdown-body td:first-child,
+.markdown-body th:first-child {
+ width: 30%;
+ padding-left: 20px;
+}
+
+.markdown-body td:last-child {
+ border-right: 0 none;
+}
+
+.markdown-body th {
+ font-size: 18px;
+ font-weight: bold;
+ text-align: left;
+ padding: 5px;
+}
+
+.markdown-body tt {
+ background-color:#3b3b3b;
+ color: #d6d6d6;
+ padding: 2px 3px;
+}
+
+.markdown-body blockquote {
+ font-style: italic;
+ font-family:Georgia, serif;
+ font-size: 17px;
+ border-top: 3px solid #333;
+ border-bottom: 3px solid #333;
+ padding: 10px 20px;
+ padding-left: 50px;
+}
+
+.markdown-body blockquote:before {
+ font-style: italic;
+ font-family: Georgia, serif;
+ font-size: 90px;
+ height: 90px;
+ margin-left: -60px;
+ margin-top: -25px;
+ content: "‟";
+ display: block;
+ float: left;
+}
+
+.markdown-body img {
+ max-width: 100%;
+ box-sizing: border-box;
+}
+
+.highlight { background: #ffffff; }
+.highlight .c { color: #999988; font-style: italic } /* Comment */
+.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
+.highlight .k { font-weight: bold } /* Keyword */
+.highlight .o { font-weight: bold } /* Operator */
+.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
+.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
+.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
+.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
+.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
+.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
+.highlight .ge { font-style: italic } /* Generic.Emph */
+.highlight .gr { color: #aa0000 } /* Generic.Error */
+.highlight .gh { color: #999999 } /* Generic.Heading */
+.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
+.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
+.highlight .go { color: #888888 } /* Generic.Output */
+.highlight .gp { color: #555555 } /* Generic.Prompt */
+.highlight .gs { font-weight: bold } /* Generic.Strong */
+.highlight .gu { color: #800080; font-weight: bold; } /* Generic.Subheading */
+.highlight .gt { color: #aa0000 } /* Generic.Traceback */
+.highlight .kc { font-weight: bold } /* Keyword.Constant */
+.highlight .kd { font-weight: bold } /* Keyword.Declaration */
+.highlight .kn { font-weight: bold } /* Keyword.Namespace */
+.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
+.highlight .kr { font-weight: bold } /* Keyword.Reserved */
+.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
+.highlight .m { color: #009999 } /* Literal.Number */
+.highlight .s { color: #d14 } /* Literal.String */
+.highlight .na { color: #008080 } /* Name.Attribute */
+.highlight .nb { color: #0086B3 } /* Name.Builtin */
+.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
+.highlight .no { color: #008080 } /* Name.Constant */
+.highlight .ni { color: #800080 } /* Name.Entity */
+.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
+.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
+.highlight .nn { color: #555555 } /* Name.Namespace */
+.highlight .nt { color: #000080 } /* Name.Tag */
+.highlight .nv { color: #008080 } /* Name.Variable */
+.highlight .ow { font-weight: bold } /* Operator.Word */
+.highlight .w { color: #bbbbbb } /* Text.Whitespace */
+.highlight .mf { color: #009999 } /* Literal.Number.Float */
+.highlight .mh { color: #009999 } /* Literal.Number.Hex */
+.highlight .mi { color: #009999 } /* Literal.Number.Integer */
+.highlight .mo { color: #009999 } /* Literal.Number.Oct */
+.highlight .sb { color: #d14 } /* Literal.String.Backtick */
+.highlight .sc { color: #d14 } /* Literal.String.Char */
+.highlight .sd { color: #d14 } /* Literal.String.Doc */
+.highlight .s2 { color: #d14 } /* Literal.String.Double */
+.highlight .se { color: #d14 } /* Literal.String.Escape */
+.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
+.highlight .si { color: #d14 } /* Literal.String.Interpol */
+.highlight .sx { color: #d14 } /* Literal.String.Other */
+.highlight .sr { color: #009926 } /* Literal.String.Regex */
+.highlight .s1 { color: #d14 } /* Literal.String.Single */
+.highlight .ss { color: #990073 } /* Literal.String.Symbol */
+.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
+.highlight .vc { color: #008080 } /* Name.Variable.Class */
+.highlight .vg { color: #008080 } /* Name.Variable.Global */
+.highlight .vi { color: #008080 } /* Name.Variable.Instance */
+.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
\ No newline at end of file