├── .travis.yml
├── app
├── favicon.png
├── assets
│ ├── img
│ │ ├── batch-logo2x.png
│ │ ├── batch-social-image.jpg
│ │ ├── batch-social-image2x.jpg
│ │ ├── single-barrel.svg
│ │ ├── batch-logo-small.svg
│ │ └── batch-logo.svg
│ ├── js
│ │ ├── scripts.min.js
│ │ └── scripts.js
│ └── css
│ │ ├── batch.min.css
│ │ ├── docs.min.css
│ │ ├── batch.css
│ │ └── docs.css
├── templates
│ ├── batch-templates.zip
│ ├── batch-template-1-column-stream.html
│ ├── batch-template-2-column.html
│ ├── batch-template-2-column-article.html
│ ├── batch-template-3-column.html
│ └── css
│ │ ├── batch.min.css
│ │ ├── docs.min.css
│ │ ├── batch.css
│ │ └── docs.css
└── releases
│ ├── 1.0.0
│ ├── batch-v1.0.0.css.zip
│ └── batch-v1.0.0.scss.zip
│ └── 2.0.0
│ ├── batch-v2.0.0.css.zip
│ └── batch-v2.0.0.scss.zip
├── src
├── scss
│ ├── base
│ │ ├── _base.scss
│ │ ├── _lists.scss
│ │ ├── _tables.scss
│ │ ├── _typography.scss
│ │ ├── _variables.scss
│ │ └── _forms.scss
│ ├── batch.scss
│ ├── docs.scss
│ ├── partials
│ │ ├── _layout.scss
│ │ ├── _buttons.scss
│ │ └── _app.scss
│ └── components
│ │ └── _batch.scss
└── js
│ └── scripts.js
├── .editorconfig
├── .jshintrc
├── .gitignore
├── package.json
├── README.md
├── gulpfile.js
├── DOCS.md
└── LICENSE
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/app/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Martskin/batch/HEAD/app/favicon.png
--------------------------------------------------------------------------------
/app/assets/img/batch-logo2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Martskin/batch/HEAD/app/assets/img/batch-logo2x.png
--------------------------------------------------------------------------------
/app/templates/batch-templates.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Martskin/batch/HEAD/app/templates/batch-templates.zip
--------------------------------------------------------------------------------
/app/assets/img/batch-social-image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Martskin/batch/HEAD/app/assets/img/batch-social-image.jpg
--------------------------------------------------------------------------------
/app/assets/img/batch-social-image2x.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Martskin/batch/HEAD/app/assets/img/batch-social-image2x.jpg
--------------------------------------------------------------------------------
/app/releases/1.0.0/batch-v1.0.0.css.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Martskin/batch/HEAD/app/releases/1.0.0/batch-v1.0.0.css.zip
--------------------------------------------------------------------------------
/app/releases/2.0.0/batch-v2.0.0.css.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Martskin/batch/HEAD/app/releases/2.0.0/batch-v2.0.0.css.zip
--------------------------------------------------------------------------------
/app/releases/1.0.0/batch-v1.0.0.scss.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Martskin/batch/HEAD/app/releases/1.0.0/batch-v1.0.0.scss.zip
--------------------------------------------------------------------------------
/app/releases/2.0.0/batch-v2.0.0.scss.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Martskin/batch/HEAD/app/releases/2.0.0/batch-v2.0.0.scss.zip
--------------------------------------------------------------------------------
/src/scss/base/_base.scss:
--------------------------------------------------------------------------------
1 | // Base
2 |
3 | @import "variables";
4 | @import "forms";
5 | @import "lists";
6 | @import "tables";
7 | @import "typography";
8 |
--------------------------------------------------------------------------------
/src/scss/batch.scss:
--------------------------------------------------------------------------------
1 | //----------------------------------*\
2 | // Batch Grid Manifest
3 | //----------------------------------*/
4 |
5 | @import "components/_batch.scss";
6 |
--------------------------------------------------------------------------------
/src/scss/base/_lists.scss:
--------------------------------------------------------------------------------
1 | ul,
2 | ol {
3 | list-style-type: none;
4 | margin: 0;
5 | padding: 0;
6 | }
7 |
8 | dl {
9 | margin-bottom: $small-spacing;
10 |
11 | dt {
12 | font-weight: bold;
13 | margin-top: $small-spacing;
14 | }
15 |
16 | dd {
17 | margin: 0;
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/src/scss/base/_tables.scss:
--------------------------------------------------------------------------------
1 | table {
2 | border-collapse: collapse;
3 | margin: $small-spacing 0;
4 | table-layout: fixed;
5 | width: 100%;
6 | }
7 |
8 | th {
9 | border-bottom: 1px solid darken($base-border-color, 15%);
10 | font-weight: 600;
11 | padding: $small-spacing 0;
12 | text-align: left;
13 | }
14 |
15 | td {
16 | border-bottom: $base-border;
17 | padding: $small-spacing 0;
18 | }
19 |
20 | tr,
21 | td,
22 | th {
23 | vertical-align: middle;
24 | }
25 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # EditorConfig helps developers define and maintain consistent
2 | # coding styles between different editors and IDEs
3 | # editorconfig.org
4 |
5 | root = true
6 |
7 | [*]
8 |
9 | # Change these settings to your own preference
10 | indent_style = space
11 | indent_size = 2
12 |
13 | # We recommend you to keep these unchanged
14 | end_of_line = lf
15 | charset = utf-8
16 | trim_trailing_whitespace = true
17 | insert_final_newline = true
18 |
19 | [*.md]
20 | trim_trailing_whitespace = false
21 |
--------------------------------------------------------------------------------
/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "node": true,
3 | "browser": true,
4 | "esnext": true,
5 | "bitwise": true,
6 | "camelcase": true,
7 | "curly": true,
8 | "eqeqeq": true,
9 | "immed": true,
10 | "indent": 2,
11 | "latedef": true,
12 | "newcap": true,
13 | "noarg": true,
14 | "quotmark": "single",
15 | "regexp": true,
16 | "undef": true,
17 | "unused": true,
18 | "strict": true,
19 | "trailing": false,
20 | "smarttabs": true,
21 | "globals" : {
22 | "jQuery": true,
23 | "Modernizr": true
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/src/scss/docs.scss:
--------------------------------------------------------------------------------
1 | // Docs Manifest
2 |
3 | //----------------------------------*\
4 | // Config
5 | //----------------------------------*/
6 |
7 | // Reset
8 | @import 'normalize';
9 |
10 | //----------------------------------*\
11 | // Bourbon
12 | //----------------------------------*/
13 |
14 | @import "base/base";
15 |
16 | //----------------------------------*\
17 | // Partials
18 | //----------------------------------*/
19 |
20 | @import 'partials/_buttons.scss';
21 | @import 'partials/_layout.scss';
22 | @import 'partials/_app.scss';
23 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Motorcycons
2 | # https://github.com/Martskin/motorcycons
3 | # @author Martin Hofmann
4 |
5 |
6 | ## Node.js
7 | lib-cov
8 | *.seed
9 | *.log
10 | *.csv
11 | *.dat
12 | *.out
13 | *.pid
14 | *.gz
15 | pids
16 | logs
17 | results
18 | npm-debug.log
19 | node_modules
20 |
21 | ## Bower
22 | src/components
23 |
24 | ## Sass
25 | .sass-cache
26 |
27 | ## OS X
28 | .DS_Store
29 | .AppleDouble
30 | .LSOverride
31 | Icon
32 | ._*
33 | .Spotlight-V100
34 | .Trashes
35 |
36 | ## Windows
37 | Thumbs.db
38 | ehthumbs.db
39 | Desktop.ini
40 | $RECYCLE.BIN/
41 |
--------------------------------------------------------------------------------
/app/assets/js/scripts.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | */
9 | !function(t,e,i,a){"use strict";t(function(){setTimeout(function(){t(t(".bi-barrel").get().reverse()).each(function(e){var i=t(this);setTimeout(function(){t(i).addClass("is-dropped")},50*e)})},500),t('[data-behavior="smooth-scroll"]').click(function(e){e.preventDefault();var i=t(t(this).attr("href")),a=i.offset();t("html, body").animate({scrollTop:a.top},500)}),t('[data-behavior="trigger-click"]').click(function(e){e.preventDefault();var i=t(this).data("target");t('[data-object="'+i+'"]')[0].click()})})}(jQuery,window,document);
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Batch",
3 | "title": "A simple, responsive, flexbox grid system.",
4 | "author": "Martin Hofmann",
5 | "url": "https://github.com/Martskin/batch",
6 | "version": "2.0.0",
7 | "license": "GPL-2.0",
8 | "repository": {
9 | "type": "git",
10 | "url": "https://github.com/Martskin/batch.git"
11 | },
12 | "devDependencies": {
13 | "browser-sync": "^1.6.5",
14 | "gulp": "^3.8.10",
15 | "gulp-autoprefixer": "^1.0.1",
16 | "gulp-header": "^1.2.2",
17 | "gulp-jshint": "^1.9.0",
18 | "gulp-load-plugins": "^1.0.0-rc.1",
19 | "gulp-minify-css": "^0.3.11",
20 | "gulp-notify": "^2.2.0",
21 | "gulp-plumber": "^1.0.1",
22 | "gulp-rename": "^1.2.0",
23 | "gulp-sass": "^2.3.2",
24 | "gulp-uglify": "^1.0.1",
25 | "gulp-util": "^3.0.6",
26 | "node-normalize-scss": "^1.4.0"
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/src/js/scripts.js:
--------------------------------------------------------------------------------
1 | (function ($, window, document, undefined) {
2 |
3 | 'use strict';
4 |
5 | $(function () {
6 |
7 | setTimeout(function () {
8 | $($('.bi-barrel').get().reverse()).each(function(i) {
9 | var self = $(this);
10 | setTimeout(function () {
11 | $(self).addClass('is-dropped');
12 | }, i*50);
13 | });
14 | }, 500);
15 |
16 | $('[data-behavior="smooth-scroll"]').click(function(e){
17 | e.preventDefault();
18 | var target = $($(this).attr('href'));
19 | var offset = target.offset();
20 | $('html, body').animate({
21 | scrollTop: offset.top
22 | }, 500);
23 | });
24 |
25 | $('[data-behavior="trigger-click"]').click(function(e){
26 | e.preventDefault();
27 | var link = $(this).data('target');
28 | $('[data-object="'+link+'"]')[0].click();
29 | });
30 |
31 | });
32 |
33 | })(jQuery, window, document);
34 |
--------------------------------------------------------------------------------
/src/scss/partials/_layout.scss:
--------------------------------------------------------------------------------
1 | // Layout
2 |
3 | .l-row {
4 | overflow:hidden;
5 | padding:$base-spacing $small-spacing;
6 |
7 | @media screen and (min-width: $medium-screen) {
8 | padding:$large-spacing $small-spacing;
9 | }
10 | }
11 |
12 | .l-row--border-top {
13 | border-top:1px solid $barrel-amber;
14 | }
15 |
16 | .l-row--amber {
17 | background-color:$barrel-amber;
18 | color:$white;
19 | }
20 |
21 | .l-row--green {
22 | background-color:$barrel-green;
23 | color:$white;
24 | }
25 |
26 | .l-row--gold {
27 | background-color:$barrel-gold;
28 | color:$white;
29 | }
30 |
31 | .l-row--gray {
32 | background-color:$light-gray;
33 | }
34 |
35 | .l-row--gray--light {
36 | background-color:$lighter-gray;
37 | }
38 |
39 | .l-container {
40 | margin-left: auto;
41 | margin-right: auto;
42 | max-width: $container-width;
43 | }
44 |
45 | .l-section {
46 | margin-bottom:$large-spacing;
47 |
48 | &:last-of-type {
49 | margin-bottom: 0;
50 | }
51 | }
52 |
--------------------------------------------------------------------------------
/app/assets/js/scripts.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | */
9 | (function ($, window, document, undefined) {
10 |
11 | 'use strict';
12 |
13 | $(function () {
14 |
15 | setTimeout(function () {
16 | $($('.bi-barrel').get().reverse()).each(function(i) {
17 | var self = $(this);
18 | setTimeout(function () {
19 | $(self).addClass('is-dropped');
20 | }, i*50);
21 | });
22 | }, 500);
23 |
24 | $('[data-behavior="smooth-scroll"]').click(function(e){
25 | e.preventDefault();
26 | var target = $($(this).attr('href'));
27 | var offset = target.offset();
28 | $('html, body').animate({
29 | scrollTop: offset.top
30 | }, 500);
31 | });
32 |
33 | $('[data-behavior="trigger-click"]').click(function(e){
34 | e.preventDefault();
35 | var link = $(this).data('target');
36 | $('[data-object="'+link+'"]')[0].click();
37 | });
38 |
39 | });
40 |
41 | })(jQuery, window, document);
42 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | [](https://martskin.github.io/batch)
3 |
4 |
5 | # Batch
6 | A simple, responsive, flexbox grid system.
7 |
8 | *Version 2.0.0*
9 |
10 | ### Basic Usage
11 | ```html
12 |
13 |
14 | Grid Cell 1
15 |
16 |
17 | Grid Cell 2
18 |
19 |
20 | Grid Cell 3
21 |
22 |
23 | ```
24 |
25 | 
26 |
27 |
28 | ## Documentation
29 | [Batch Documentation](https://martskin.github.io/batch)
30 |
31 |
32 | ### Docs Build
33 | ``npm install``
34 |
35 | ``gulp``
36 |
37 | Visit `http://localhost:3000/` to view docs locally.
38 |
39 | ## Credits
40 | * Framework built with [FastShell](https://github.com/HosseinKarami/fastshell)
41 |
42 | * Inspired by [PureGrid](http://purecss.io/grids/), [Bootstrap](http://getbootstrap.com/) and [csswizardry-grids](http://csswizardry.com/csswizardry-grids/).
43 |
--------------------------------------------------------------------------------
/app/templates/batch-template-1-column-stream.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Batch | 1 Column Stream Template
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
25 |
26 |
27 | Main
28 |
29 |
30 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/app/templates/batch-template-2-column.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Batch | 2 Column Template
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
25 |
26 |
29 |
30 |
31 | Main
32 |
33 |
34 |
37 |
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/app/templates/batch-template-2-column-article.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Batch | 2 Column Article Template
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
25 |
26 |
29 |
30 |
31 | Main
32 |
33 |
34 |
37 |
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/app/templates/batch-template-3-column.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Batch | 3 Column Template
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
25 |
26 |
29 |
30 |
31 | Main
32 |
33 |
34 |
37 |
38 |
41 |
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/src/scss/base/_typography.scss:
--------------------------------------------------------------------------------
1 |
2 | body {
3 | -webkit-font-smoothing: antialiased;
4 | color: $base-font-color;
5 | font-family: $base-font-family;
6 | font-size: $base-font-size;
7 | line-height: $base-line-height;
8 | }
9 |
10 | @mixin heading-attributes($font-size) {
11 | font-size: $font-size;
12 | font-family: $heading-font-family;
13 | font-weight: $heading-font-weight;
14 | line-height: $heading-line-height;
15 | margin: 0 0 $small-spacing;
16 | }
17 |
18 | h1 {
19 | @include heading-attributes(2.25em);
20 | }
21 |
22 | h2 {
23 | @include heading-attributes(2em);
24 | }
25 |
26 | h3 {
27 | @include heading-attributes(1.75em);
28 | }
29 |
30 | h4 {
31 | @include heading-attributes(1.25em);
32 | }
33 |
34 | h5,
35 | h6 {
36 | @include heading-attributes(1.15em);
37 | }
38 |
39 | p {
40 | margin: 0 0 $small-spacing;
41 | }
42 |
43 | a {
44 | color: $action-color;
45 | text-decoration: none;
46 | transition: color 0.1s linear;
47 |
48 | &:active,
49 | &:focus,
50 | &:hover {
51 | color: darken($action-color, 15%);
52 | }
53 |
54 | &:active,
55 | &:focus {
56 | outline: none;
57 | }
58 | }
59 |
60 | hr {
61 | border-bottom: $base-border;
62 | border-left: none;
63 | border-right: none;
64 | border-top: none;
65 | margin: $base-spacing 0;
66 | }
67 |
68 | img,
69 | picture {
70 | margin: 0;
71 | max-width: 100%;
72 | }
73 |
74 | ::selection {
75 | background:$barrel-green-light;
76 | }
--------------------------------------------------------------------------------
/src/scss/base/_variables.scss:
--------------------------------------------------------------------------------
1 | // Typography
2 | $base-font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
3 | $heading-font-family: 'Raleway', sans-serif;
4 | $heading-font-weight: 500;
5 | $code-font-family: Consolas,monaco,monospace;
6 |
7 | // Font Sizes
8 | $base-font-size: 1em;
9 | $small-font-size: 0.8em;
10 |
11 | // Line height
12 | $base-line-height: 1.5;
13 | $heading-line-height: 1.2;
14 |
15 | // Other Sizes
16 | $base-border-radius: 3px;
17 | $base-spacing: $base-line-height * 1em;
18 | $small-spacing: $base-spacing / 2;
19 | $medium-spacing: $base-spacing * 1.5;
20 | $large-spacing: $base-spacing * 2;
21 | $xlarge-spacing: $base-spacing * 3;
22 | $xxlarge-spacing: $base-spacing * 3;
23 | $base-z-index: 0;
24 | $container-width: 1080px;
25 |
26 | // Colors
27 | $dark-gray: #333333;
28 | $medium-gray: #dfdfdf;
29 | $light-gray: #dddddd;
30 | $lighter-gray: #f9f9f9;
31 | $barrel-amber: #BF3100;
32 | $barrel-green: #8EA604;
33 | $barrel-green-light: lighten($barrel-green, 50%);
34 | $barrel-gold: #EC5B05;
35 | $barrel-gold-light: lighten($barrel-gold, 50%);
36 | $white: #ffffff;
37 |
38 | // Doc Colors
39 | $code-name-color: $barrel-amber;
40 | $code-class-color: $barrel-green;
41 | $code-object-color: $barrel-gold;
42 |
43 | // Font Colors
44 | $base-background-color: $white;
45 | $base-font-color: $dark-gray;
46 | $action-color: $barrel-green;
47 |
48 | // Border
49 | $base-border-color: $light-gray;
50 | $base-border: 1px solid $base-border-color;
51 |
52 | // Forms
53 | $form-box-shadow: inset 0 1px 3px rgba(#000, 0.06);
54 | $form-box-shadow-focus: $form-box-shadow, 0 0 5px adjust-color($action-color, $lightness: -5%, $alpha: -0.3);
55 |
56 | //Breakpoints
57 | $medium-screen: 600px;
58 | $large-screen: 900px;
59 |
--------------------------------------------------------------------------------
/src/scss/base/_forms.scss:
--------------------------------------------------------------------------------
1 | fieldset {
2 | background-color: lighten($base-border-color, 10%);
3 | border: $base-border;
4 | margin: 0 0 $small-spacing;
5 | padding: $base-spacing;
6 | }
7 |
8 | input,
9 | label,
10 | select {
11 | display: block;
12 | font-family: $base-font-family;
13 | font-size: $base-font-size;
14 | }
15 |
16 | label {
17 | font-weight: 600;
18 | margin-bottom: $small-spacing / 2;
19 |
20 | &.required::after {
21 | content: "*";
22 | }
23 |
24 | abbr {
25 | display: none;
26 | }
27 | }
28 |
29 | input[type="color"],
30 | input[type="date"],
31 | input[type="datetime"],
32 | input[type="datetime-local"],
33 | input[type="email"],
34 | input[type="month"],
35 | input[type="number"],
36 | input[type="password"],
37 | input[type="search"],
38 | input[type="tel"],
39 | input[type="text"],
40 | input[type="time"],
41 | input[type="url"],
42 | input[type="week"],
43 | input:not([type]),
44 | textarea,
45 | select[multiple=multiple] {
46 | background-color: $base-background-color;
47 | border: $base-border;
48 | border-radius: $base-border-radius;
49 | box-shadow: $form-box-shadow;
50 | box-sizing: border-box;
51 | font-family: $base-font-family;
52 | font-size: $base-font-size;
53 | margin-bottom: $base-spacing / 2;
54 | padding: $base-spacing / 3;
55 | transition: border-color;
56 | width: 100%;
57 |
58 | &:hover {
59 | border-color: darken($base-border-color, 10%);
60 | }
61 |
62 | &:focus {
63 | border-color: $action-color;
64 | box-shadow: $form-box-shadow-focus;
65 | outline: none;
66 | }
67 | }
68 |
69 | textarea {
70 | resize: vertical;
71 | }
72 |
73 | input[type="search"] {
74 | appearance: none;
75 | }
76 |
77 | input[type="checkbox"],
78 | input[type="radio"] {
79 | display: inline;
80 | margin-right: $small-spacing / 2;
81 | }
82 |
83 | input[type="file"] {
84 | padding-bottom: $small-spacing;
85 | width: 100%;
86 | }
87 |
88 | select {
89 | margin-bottom: $base-spacing;
90 | max-width: 100%;
91 | width: auto;
92 | }
93 |
--------------------------------------------------------------------------------
/src/scss/partials/_buttons.scss:
--------------------------------------------------------------------------------
1 | // Buttons
2 |
3 | .btn,
4 | button {
5 | -webkit-font-smoothing: antialiased;
6 | appearance: none;
7 | background-color: $action-color;
8 | border-radius: $base-border-radius;
9 | border: none;
10 | color: $white;
11 | cursor: pointer;
12 | display: inline-block;
13 | font-family: $base-font-family;
14 | font-size: $base-font-size;
15 | font-weight: 400;
16 | line-height: 1;
17 | margin-right: $small-spacing;
18 | padding: 0.75em 1em;
19 | text-align:center;
20 | text-decoration: none;
21 | user-select: none;
22 | vertical-align: middle;
23 | white-space: nowrap;
24 |
25 | @media screen and (min-width: $medium-screen) {
26 | margin-right: $base-spacing;
27 | }
28 |
29 | &:hover,
30 | &:focus {
31 | background-color: darken($action-color, 15%);
32 | color: $white;
33 | }
34 |
35 | &:disabled {
36 | cursor: not-allowed;
37 | opacity: 0.5;
38 | }
39 |
40 | & + &:last-of-type {
41 | margin-right: 0;
42 | }
43 |
44 | &.btn--secondary {
45 | background-color: $white;
46 | border:1px solid $action-color;
47 | color: $action-color;
48 |
49 | &:hover,
50 | &:focus {
51 | background-color: $lighter-gray;
52 | }
53 | }
54 | }
55 |
56 | .btn--small {
57 | font-size: $small-font-size;
58 | margin-right: $small-spacing;
59 | padding: 0.75em 0.9em;
60 |
61 | & + &:last-of-type {
62 | margin-right: 0;
63 | }
64 | }
65 |
66 | .btn_notes {
67 | display: block;
68 | font-size: 0.7em;
69 | font-style: italic;
70 |
71 | @media screen and (min-width: $medium-screen) {
72 | display: inline;
73 | }
74 | }
75 |
76 | .link--light {
77 | color:$white;
78 |
79 | &:hover,
80 | &:focus {
81 | color: $barrel-gold;
82 | }
83 | }
84 |
85 | .link--underlined {
86 | border-bottom-color: $action-color;
87 | border-bottom-style: solid;
88 | border-bottom-width: 2px;
89 |
90 | &.link--light {
91 | border-bottom-color: transparentize($white, 0.75);
92 |
93 | &:hover {
94 | border-bottom-color: transparentize($barrel-gold, 0.75);
95 | }
96 | }
97 | }
98 |
--------------------------------------------------------------------------------
/app/assets/img/single-barrel.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
30 |
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
1 | var gulp = require('gulp'),
2 | sass = require('gulp-sass'),
3 | browserSync = require('browser-sync'),
4 | autoprefixer = require('gulp-autoprefixer'),
5 | uglify = require('gulp-uglify'),
6 | jshint = require('gulp-jshint'),
7 | header = require('gulp-header'),
8 | rename = require('gulp-rename'),
9 | minifyCSS = require('gulp-minify-css'),
10 | normalize = require('node-normalize-scss').includePaths,
11 | package = require('./package.json'),
12 | dist_dir = 'app/assets/css',
13 | temp_dir = 'app/templates/css',
14 | $ = require('gulp-load-plugins')();
15 |
16 | var banner = [
17 | '/*!\n' +
18 | ' * <%= package.name %>\n' +
19 | ' * <%= package.title %>\n' +
20 | ' * <%= package.url %>\n' +
21 | ' * @author <%= package.author %>\n' +
22 | ' * @version <%= package.version %>\n' +
23 | ' * Copyright ' + new Date().getFullYear() + '. <%= package.license %> licensed.\n' +
24 | ' */',
25 | '\n'
26 | ].join('');
27 |
28 | /**
29 | * Error notification settings
30 | */
31 | function errorAlert(err) {
32 | $.notify.onError({
33 | message: '<%= error.message %>',
34 | sound: 'Sosumi'
35 | })(err);
36 | console.log(err.toString());
37 | }
38 |
39 | gulp.task('css', function () {
40 | gulp.src('src/scss/*.scss')
41 | .pipe( $.plumber({ errorHandler: errorAlert }) )
42 | .pipe($.sass({
43 | includePaths: ['styles'].concat(normalize)
44 | }))
45 | .on( 'error', function(err) {
46 | new $.util.PluginError(
47 | 'CSS',
48 | err,
49 | {
50 | showStack: true
51 | }
52 | );
53 | })
54 | .pipe(autoprefixer('last 4 version'))
55 | .pipe(header(banner, { package : package }))
56 | .pipe(gulp.dest(dist_dir))
57 | .pipe(gulp.dest(temp_dir))
58 | .pipe(minifyCSS())
59 | .pipe(rename({ suffix: '.min' }))
60 | .pipe(gulp.dest(dist_dir))
61 | .pipe(gulp.dest(temp_dir))
62 | .pipe(browserSync.reload({stream:true,notify: true}))
63 | .on( 'error', errorAlert )
64 | .pipe(
65 | $.notify({
66 | message: 'Styles have been compiled and minified into assets/css and templates/css directories.',
67 | onLast: true
68 | })
69 | );
70 | });
71 |
72 | gulp.task('js',function(){
73 | gulp.src('src/js/scripts.js')
74 | .pipe( $.plumber({ errorHandler: errorAlert }) )
75 | .pipe(jshint('.jshintrc'))
76 | .pipe(jshint.reporter('default'))
77 | .pipe(header(banner, { package : package }))
78 | .pipe(gulp.dest('app/assets/js'))
79 | .pipe(uglify())
80 | .pipe(header(banner, { package : package }))
81 | .pipe(rename({ suffix: '.min' }))
82 | .pipe(gulp.dest('app/assets/js'))
83 | .pipe(browserSync.reload({stream:true, once: true}))
84 | .on( 'error', errorAlert )
85 | .pipe(
86 | $.notify({
87 | message: 'Scripts have been compiled and minified into assets/js directory.',
88 | onLast: true
89 | })
90 | );
91 | });
92 |
93 | gulp.task('browser-sync', function() {
94 | browserSync.init(null, {
95 | server: {
96 | baseDir: "app"
97 | }
98 | });
99 | });
100 |
101 | gulp.task('bs-reload', function () {
102 | browserSync.reload();
103 | });
104 |
105 | gulp.task('default', ['css', 'js', 'browser-sync'], function () {
106 | gulp.watch("src/scss/*/*.scss", ['css']);
107 | gulp.watch("src/js/*.js", ['js']);
108 | gulp.watch("app/*.html", ['bs-reload']);
109 | });
--------------------------------------------------------------------------------
/src/scss/components/_batch.scss:
--------------------------------------------------------------------------------
1 | // Batch
2 | // A simple, responsive, flexbox grid system.
3 | // https://github.com/Martskin/batch
4 | // @author Martin Hofmann
5 | // @version 2.0.0
6 | // Copyright 2016. GPL-2.0 licensed.
7 |
8 | // Breakpoints
9 | $medium-screen: 600px !default;
10 | $large-screen: 900px !default;
11 |
12 | // Cell Gutter
13 | // Must be an even number
14 | $batch-gutter: 10px;
15 |
16 | // Cell Padding
17 | $batch-padding: 5px;
18 |
19 | // Cell Border
20 | $batch-border: 1px;
21 |
22 | // Cell Border Color
23 | $batch-border-color: #666666;
24 |
25 | // Cell Order Positions
26 | $batch-order-positions: 10;
27 |
28 | // Batch cells
29 | $cell-sizes : (
30 | 1 : (1, 2, 3, 4, 6, 8, 12, 24),
31 | 2 : (3),
32 | 3 : (4, 8),
33 | 5 : (6, 8, 12, 24),
34 | 7 : (8, 12, 24),
35 | 11 : (12, 24),
36 | 13 : (24),
37 | 17 : (24),
38 | 19 : (24),
39 | 23 : (24)
40 | );
41 |
42 | // We'll loop through the $cell-sizes map to distill the cell classes.
43 | // The key is the numerator and then we loop through the value array for each denominator.
44 | // The key-value pair is used in the class name and is also used to calculate the width percentage.
45 | // Default sizes are 3rds, 4ths, 6ths, 8ths, 12ths and 24ths:
46 | // 1-1, 1-2, 1-3, 1-4, 1-6, 1-8, 1-12, 1-24
47 | // 2-3
48 | // 3-4, 3-8
49 | // 5-6, 5-8, 5-12, 5-24
50 | // 7-8, 7-12, 7-24
51 | // 11-12, 11-24
52 | // 13-24
53 | // 17-24
54 | // 19-24
55 | // 23-24
56 | @mixin small-batch($breakpoint:'') {
57 | @each $key, $cell-size in $cell-sizes {
58 | @for $i from 1 to (length($cell-size)+1) {
59 | $cell-size-percentage: (percentage($key/nth($cell-size, $i)));
60 | .batch-c#{$breakpoint}-#{$key}-#{nth($cell-size, $i)} {
61 | width: $cell-size-percentage;
62 |
63 | .batch-g--gutter > & {
64 | margin: ($batch-gutter/2);
65 | width: calc(#{$cell-size-percentage} - #{$batch-gutter});
66 | }
67 | }
68 | }
69 | }
70 | }
71 |
72 | // Flexbox cell ordering modifier classes
73 | @mixin cell-order($breakpoint:'') {
74 | @for $i from 1 to ($batch-order-positions+1) {
75 | .batch-c--order#{$breakpoint}-#{$i} {
76 | order: $i;
77 | }
78 | }
79 | }
80 |
81 | /* Batch grid wrapper */
82 | .batch-g {
83 | align-items: stretch;
84 | display: flex;
85 | flex-direction: row;
86 | flex-wrap: wrap;
87 | justify-content: flex-start;
88 | }
89 |
90 | /* Batch grid modifiers */
91 | .batch-g--border {
92 |
93 | > [class^="batch-c"] {
94 | border:$batch-border solid $batch-border-color;
95 | }
96 | }
97 |
98 | .batch-g--gutter {
99 | margin:0 (-$batch-gutter/2);
100 | }
101 |
102 | .batch-g--padding {
103 |
104 | > [class^="batch-c"] {
105 | padding:$batch-padding;
106 | }
107 | }
108 |
109 | .batch-g--padding-horizontal {
110 |
111 | > [class^="batch-c"] {
112 | padding-left: $batch-padding;
113 | padding-right: $batch-padding;
114 | }
115 | }
116 |
117 | .batch-g--padding-vertical {
118 |
119 | > [class^="batch-c"] {
120 | padding-bottom: $batch-padding;
121 | padding-top: $batch-padding;
122 | }
123 | }
124 |
125 | .batch-g--reverse {
126 | flex-direction: row-reverse;
127 | }
128 |
129 | .batch-g--valign-top {
130 | align-items: flex-start;
131 | }
132 |
133 | .batch-g--valign-center {
134 | align-items: center;
135 | }
136 |
137 | .batch-g--valign-bottom {
138 | align-items: flex-end;
139 | }
140 |
141 | .batch-g--align-center {
142 | justify-content: center;
143 | }
144 |
145 | .batch-g--align-right {
146 | justify-content: flex-end;
147 | }
148 |
149 | /* Batch grid cells */
150 | [class^="batch-c"] {
151 | box-sizing: border-box;
152 | flex: 0 0 auto;
153 | }
154 |
155 | /* Base cells */
156 | @include small-batch();
157 |
158 | /* Medium screen cells */
159 | @media screen and (min-width: $medium-screen) {
160 | @include small-batch('-md');
161 | }
162 |
163 | /* Large screen cells */
164 | @media screen and (min-width: $large-screen) {
165 | @include small-batch('-lg');
166 | }
167 |
168 | /* Medium screen cell ordering */
169 | @media screen and (min-width: $medium-screen) {
170 | @include cell-order('-md');
171 | }
172 |
173 | /* Large screen cell ordering */
174 | @media screen and (min-width: $large-screen) {
175 | @include cell-order('-lg');
176 | }
177 |
178 | /* Batch cell modifiers */
179 | .batch-c--valign-self-top {
180 | align-self: flex-start;
181 | }
182 |
183 | .batch-c--valign-self-bottom {
184 | align-self: flex-end;
185 | }
186 |
187 | .batch-c--valign-self-center {
188 | align-self: center;
189 | }
190 |
--------------------------------------------------------------------------------
/src/scss/partials/_app.scss:
--------------------------------------------------------------------------------
1 | // App
2 |
3 | .batch-logo {
4 |
5 | @media screen and (min-width: $large-screen) {
6 | margin-bottom:0;
7 | }
8 | }
9 |
10 | .batch-logo_image {
11 | max-width:280px;
12 | }
13 |
14 | .utilities {
15 | text-align:center;
16 |
17 | @media screen and (min-width: $large-screen) {
18 | text-align:right;
19 | }
20 | }
21 |
22 | .utilities_item {
23 | padding-bottom:$base-spacing;
24 | }
25 |
26 | .hero {
27 | padding-bottom:$medium-spacing;
28 | padding-top:$medium-spacing;
29 |
30 | @media screen and (min-width: $medium-screen) {
31 | padding-bottom:$large-spacing;
32 | padding-top:$large-spacing;
33 | }
34 | }
35 |
36 | .hero-headline {
37 | font-size:2.5em;
38 | text-align:center;
39 | text-shadow:0px 2px 0px rgba($dark-gray, 0.2);
40 | }
41 |
42 | .hero-warehouse {
43 | margin: 0 auto;
44 | line-height: 0;
45 |
46 | @media screen and (min-width: $medium-screen) {
47 | width: 90%;
48 | }
49 |
50 | @media screen and (min-width: $large-screen) {
51 | width: 70%;
52 | }
53 | }
54 |
55 | .bi-barrel {
56 | position: relative;
57 | top: -1000px;
58 | transition: top 0.2s linear;
59 |
60 | &.is-dropped {
61 | top: 0px;
62 | }
63 | }
64 |
65 | .rotate-flip {
66 | transform: rotate(90deg) scaleX(-1);
67 | }
68 |
69 | .feature-object {
70 | padding:0 $base-spacing;
71 | text-align:center;
72 | }
73 |
74 | .feature-object_icon {
75 | color:$barrel-gold;
76 | font-size:4em;
77 |
78 | @media screen and (min-width: $large-screen) {
79 | font-size:7em;
80 | }
81 | }
82 |
83 | .comment {
84 | font-family: $code-font-family;
85 | opacity: 0.5;
86 | }
87 |
88 | pre {
89 | background:$lighter-gray;
90 | border-radius:4px;
91 | color:$dark-gray;
92 | font-family: $code-font-family;
93 | font-size:$small-font-size;
94 | line-height:1.25em;
95 | overflow: auto;
96 | padding:5px;
97 | white-space: pre-line;
98 | }
99 |
100 | .pre-block {
101 | white-space: pre;
102 | }
103 |
104 | code {
105 | font-family: $code-font-family;
106 | font-size:$small-font-size;
107 | line-height:1.25em;
108 |
109 | .code-o {
110 | color:$code-object-color;
111 | }
112 |
113 | .code-c {
114 | color:$code-class-color;
115 | }
116 |
117 | .code-n {
118 | color:$code-name-color;
119 | }
120 | }
121 |
122 | .batch-g--docs {
123 | background:$barrel-gold-light;
124 | margin:0 -5px;
125 |
126 | [class^="batch-c"] {
127 | background:#ffffff;
128 | }
129 | }
130 |
131 | .batch-g--border-lg {
132 | background:$barrel-gold;
133 |
134 | [class^="batch-c"] {
135 | border-color:$barrel-gold;
136 | }
137 | }
138 |
139 | .batch-g--filled {
140 | background:$lighter-gray;
141 |
142 | [class^="batch-c"] {
143 | background:$light-gray;
144 | font-size:$small-font-size;
145 | }
146 | }
147 |
148 | .batch-g--dl {
149 | font-size:$small-font-size;
150 | margin:0 0 $medium-spacing;
151 |
152 | > [class^="batch-c"] {
153 | &:nth-child(odd) {
154 | text-align: right;
155 | }
156 | }
157 | }
158 |
159 | @mixin template-shared($bkg, $hgt) {
160 | background:$bkg;
161 | color:$white;
162 | text-align:center;
163 |
164 | @media screen and (min-width: $medium-screen) {
165 | height:$hgt;
166 | }
167 | }
168 |
169 | .batch-g--templates {
170 | margin-bottom:$small-spacing;
171 |
172 | header {
173 | @include template-shared($barrel-gold, 65px);
174 | }
175 |
176 | aside {
177 | @include template-shared($barrel-amber, 200px);
178 |
179 | &:nth-of-type(2) {
180 | opacity: 0.7;
181 | }
182 | }
183 |
184 | main {
185 | @include template-shared($barrel-green, 200px);
186 | }
187 |
188 | footer {
189 | @include template-shared($dark-gray, 65px);
190 | }
191 | }
192 |
193 | // Utility Classes
194 | .highlight {
195 | color: $dark-gray;
196 | margin-bottom: 10px;
197 | text-align: left;
198 | }
199 |
200 | .strong {
201 | font-weight: bold;
202 | }
203 |
204 | .small-text {
205 | font-size: 0.75em;
206 | line-height: 1.25em;
207 | }
208 |
209 | .highlight-sm {
210 |
211 | .strong {
212 | font-weight: bold;
213 | }
214 |
215 | @media screen and (min-width: $medium-screen) {
216 | opacity: 0.4;
217 |
218 | .strong {
219 | font-weight: normal;
220 | }
221 | }
222 | }
223 |
224 | .highlight-md {
225 | opacity: 0.4;
226 |
227 | .strong {
228 | font-weight: normal;
229 | }
230 |
231 | @media screen and (min-width: $medium-screen) {
232 | opacity: 1;
233 |
234 | .strong {
235 | font-weight: bold;
236 | }
237 | }
238 |
239 | @media screen and (min-width: $large-screen) {
240 | opacity: 0.4;
241 |
242 | .strong {
243 | font-weight: normal;
244 | }
245 | }
246 | }
247 |
248 | .highlight-lg {
249 | opacity: 0.4;
250 |
251 | .strong {
252 | font-weight: normal;
253 | }
254 |
255 | @media screen and (min-width: $large-screen) {
256 | opacity: 1;
257 |
258 | .strong {
259 | font-weight: bold;
260 | }
261 | }
262 | }
263 |
264 | .show-sm {
265 | @media screen and (min-width: $medium-screen) {
266 | display: none;
267 | }
268 | }
269 |
270 | .hide-sm {
271 | @media screen and (max-width: $medium-screen) {
272 | display: none;
273 | }
274 | }
275 |
276 | .show-md {
277 | @media screen and (max-width: $medium-screen) {
278 | display: none;
279 | }
280 |
281 | @media screen and (min-width: $large-screen) {
282 | display: none;
283 | }
284 | }
285 |
286 | .hide-md {
287 | @media (min-width: $medium-screen) and (max-width: $large-screen) {
288 | display: none;
289 | }
290 | }
291 |
292 | .show-lg {
293 | @media screen and (max-width: $medium-screen) {
294 | display: none;
295 | }
296 |
297 | @media (min-width: $medium-screen) and (max-width: $large-screen) {
298 | display: none;
299 | }
300 | }
301 |
302 | .hide-lg {
303 | @media screen and (min-width: $large-screen) {
304 | display: none;
305 | }
306 | }
307 |
308 | .footer {
309 | padding-bottom:$xxlarge-spacing;
310 | padding-top:$xxlarge-spacing;
311 | font-size: $small-font-size;
312 | }
313 |
--------------------------------------------------------------------------------
/DOCS.md:
--------------------------------------------------------------------------------
1 | # FastShell Docs
2 |
3 | ## Project setup and Gulp installation
4 | FastShell utilises open source components running on the Terminal/command-line for it's workflow, you'll need to install Node and Gulp. Here's a walkthrough of how to get a project up and running in minutes. Once Node and Gulp are installed all future projects running Gulp are instant.
5 |
6 | 1. Install [Node.js](http://nodejs.org/download), [Sass](http://sass-lang.com/tutorial.html) and [Git](http://git-scm.com) on your machine. If you're a Windows user you'll also need to install [Ruby](http://rubyinstaller.org/downloads).
7 | 2. [Install Gulp](http://Gulpjs.com/) using `npm install -g gulp`. You may need to use `sudo` in front of the Gulp install command to give it permissions.
8 | 3. Fork/Clone/Download the FastShell repository into your machine, you should hopefully see all the files and folders.
9 | 4. Open Terminal and install FastShell's dependencies to `node_modules` directory in your project directory using `npm install`. You don't need `sudo` to do this.
10 | 5. The `npm install` you did in previous step should install all the dependencies, which you can confirm by visiting the `node_modules` in your project directory. Then use `gulp` (again in your project directory) to run the commands associated with FastShell and to automatically open a new FastShell project running on `localhost:3002`.
11 | 6. From now on, just run `gulp` in your project directory to automatically run FastShell's Gulp tasks.
12 |
13 | ## How to use FastShell
14 | Using FastShell is very easy, it's based on an easy philosphy of keeping things simple so that anybody can use it, even with zero experience on the command-line. FastShell uses Gulp to manage all the essential tasks for building with the web.
15 |
16 | ### Scaffolding
17 | FastShell's scaffolding is lightweight and super easy. It takes into account a build directory of which you'll compile all your necessary code into. It keeps precious development files (raw `.scss` and `.js`) out of deployment, with a view that you'll be deploying just the contents of the `app` folder onto the server.
18 |
19 | Once running, FastShell does the following:
20 |
21 | 1. Mounts the `app` folder onto a local server
22 | 2. Listens for changes inside the `src` directory, and compiles the necessary files into the `app` directory, which will then automaticaly livereload or inject changes. CSS changes are injected, all other changes force a page reload.
23 |
24 | ### Dynamic copyright/project banners
25 | The package.json includes the dependencies for the project as well as information about the project. Entries here will be dynamically appended to the top of generated `.css` and `.js` files, by default it ships with FastShell's banner:
26 |
27 | ````js
28 | /*!
29 | * fastshell
30 | * Fiercely quick and opinionated front-ends
31 | * https://HosseinKarami.github.io/fastshell
32 | * @author Hossein Karami
33 | * @version 1.0.0
34 | * Copyright 2014. MIT licensed.
35 | */
36 | ````
37 |
38 | ### Browser-Sync
39 | Gulp's browser-sync will inject the following script into your HTML for you (not included when you deploy):
40 |
41 | ````html
42 |
45 | ````
46 |
47 | It's pretty useful when used with a single browser, watching a CSS file for changes & injecting it. But the real power comes when you're building responsive sites and using multiple devices/monitors because it can keep all browsers in sync & make your workflow much faster.
48 |
49 | ### Extending Gulp tasks
50 | If you're including more Gulp tasks in your project, remember to use the `npm install --save-dev` inside your Terminal so that it gets added to your `package.json` file for future dependencies.
51 |
52 | Add new tasks to either the default `gulp` task at the `gulpfile.js`:
53 |
54 | ## JavaScript
55 | FastShell comes with a single `scripts.js` to get you started, of course if you're building an AngularJS project or other type you're going to need to customise the structure, but this gets you started. The generic scripts file ships with an immediately-invoked function expression (IIFE):
56 |
57 | ````js
58 | (function ($, window, document, undefined) {
59 | 'use strict';
60 | // FastShell
61 | })(jQuery, window, document);
62 | ````
63 |
64 | This helps with all your minification and not polluting with global variables, for instance before minification you've got very readable code and variable names (including the `document` and `window` objects):
65 |
66 | ````js
67 | (function ($, window, document, undefined) {
68 | 'use strict';
69 | var test = document.createElement('script');
70 | })(jQuery, window, document);
71 | ````
72 |
73 | When minified will be as follows, reducing many instances of the :
74 |
75 | ````js
76 | (function (a,b,c,d) {
77 | 'use strict';
78 | // Also not global
79 | var test = a.createElement('script');
80 | })(jQuery,window,document);
81 | ````
82 |
83 | Thus saving many bytes and reducing file size and performance, as well as keeping the global namespace clean. Passing in the `jQuery` object and giving it the dollar alias also makes it play nicely if you're including other frameworks that use the `$` namespace.
84 |
85 | ## Why just style.min.css and scripts.min.js?
86 | Including only two of your custom CSS and JavaScript files in your HTML aligns with best practices in modern web development, minifying your code and limiting HTTP requests is a huge performance enhancer.
87 |
88 | ## Sass/SCSS setup
89 | FastShell comes with a `.scss` file setup and existing `@import` declarations to the very common web components. FastShell hopes to help those out who aren't sure about structuring a CSS project confidently as well as getting them setup with using a CSS PreProcessor. The basic idea:
90 |
91 | * `mixins` holds all Sass/SCSS mixins, FastShell ships with a few helpers
92 | * `module` holds modules, more Object-Orientated components and a generic `app.scss` for everything else, all file names should be modular/OO.
93 | * `partials` holds the blueprints for the project, the header, footer, sidebar and so on.
94 | * `vendor` holds any files that are third party, such as the font awesome icons CSS
95 | * `style.scss` imports all the necessary files from the above folders, when adding new files be sure to add it inside this file.
96 |
97 | ## Hidden files explained
98 |
99 | It's a good idea to expose hidden files so you can configure your `.editorconfig`, `.jshintrc`, `.gitignore` files. On the command line, enter:
100 |
101 | ````
102 | defaults write com.apple.Finder AppleShowAllFiles YES
103 | ````
104 |
105 | To hide hidden files enter:
106 |
107 | ````
108 | defaults write com.apple.Finder AppleShowAllFiles NO
109 | ````
110 |
111 | ### .editorconfig
112 | EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. The `.editorconfig` file consists of a format for defining coding styles and a collection of text editor plugins that enable editors to read the file format and adhere to defined styles.
113 |
114 | ### .gitignore
115 | Ignores minified and generated files, this is best for working in teams to avoid constant conflict, only the source files are needed.
116 |
117 | ### .travis.yml
118 | This is used on [travis-ci.org](http://travis-ci.org) for continuous integration tests, which monitor the FastShell build.
119 |
120 | ## Platform support
121 |
122 | FastShell runs on both Mac OS X, Linux and Windows. Automated command-line scripts are only supported on Mac OS X and Windows.
--------------------------------------------------------------------------------
/app/assets/css/batch.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | */.batch-g{-ms-flex-align:stretch;align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.batch-g--border>[class^=batch-c]{border:1px solid #666}.batch-g--gutter{margin:0 -5px}.batch-g--padding>[class^=batch-c]{padding:5px}.batch-g--padding-horizontal>[class^=batch-c]{padding-left:5px;padding-right:5px}.batch-g--padding-vertical>[class^=batch-c]{padding-bottom:5px;padding-top:5px}.batch-g--reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.batch-g--valign-top{-ms-flex-align:start;align-items:flex-start}.batch-g--valign-center{-ms-flex-align:center;align-items:center}.batch-g--valign-bottom{-ms-flex-align:end;align-items:flex-end}.batch-g--align-center{-ms-flex-pack:center;justify-content:center}.batch-g--align-right{-ms-flex-pack:end;justify-content:flex-end}[class^=batch-c]{box-sizing:border-box;-ms-flex:0 0 auto;flex:0 0 auto}.batch-c-1-1{width:100%}.batch-g--gutter>.batch-c-1-1{margin:5px;width:calc(100% - 10px)}.batch-c-1-2{width:50%}.batch-g--gutter>.batch-c-1-2{margin:5px;width:calc(50% - 10px)}.batch-c-1-3{width:33.33333%}.batch-g--gutter>.batch-c-1-3{margin:5px;width:calc(33.33333% - 10px)}.batch-c-1-4{width:25%}.batch-g--gutter>.batch-c-1-4{margin:5px;width:calc(25% - 10px)}.batch-c-1-6{width:16.66667%}.batch-g--gutter>.batch-c-1-6{margin:5px;width:calc(16.66667% - 10px)}.batch-c-1-8{width:12.5%}.batch-g--gutter>.batch-c-1-8{margin:5px;width:calc(12.5% - 10px)}.batch-c-1-12{width:8.33333%}.batch-g--gutter>.batch-c-1-12{margin:5px;width:calc(8.33333% - 10px)}.batch-c-1-24{width:4.16667%}.batch-g--gutter>.batch-c-1-24{margin:5px;width:calc(4.16667% - 10px)}.batch-c-2-3{width:66.66667%}.batch-g--gutter>.batch-c-2-3{margin:5px;width:calc(66.66667% - 10px)}.batch-c-3-4{width:75%}.batch-g--gutter>.batch-c-3-4{margin:5px;width:calc(75% - 10px)}.batch-c-3-8{width:37.5%}.batch-g--gutter>.batch-c-3-8{margin:5px;width:calc(37.5% - 10px)}.batch-c-5-6{width:83.33333%}.batch-g--gutter>.batch-c-5-6{margin:5px;width:calc(83.33333% - 10px)}.batch-c-5-8{width:62.5%}.batch-g--gutter>.batch-c-5-8{margin:5px;width:calc(62.5% - 10px)}.batch-c-5-12{width:41.66667%}.batch-g--gutter>.batch-c-5-12{margin:5px;width:calc(41.66667% - 10px)}.batch-c-5-24{width:20.83333%}.batch-g--gutter>.batch-c-5-24{margin:5px;width:calc(20.83333% - 10px)}.batch-c-7-8{width:87.5%}.batch-g--gutter>.batch-c-7-8{margin:5px;width:calc(87.5% - 10px)}.batch-c-7-12{width:58.33333%}.batch-g--gutter>.batch-c-7-12{margin:5px;width:calc(58.33333% - 10px)}.batch-c-7-24{width:29.16667%}.batch-g--gutter>.batch-c-7-24{margin:5px;width:calc(29.16667% - 10px)}.batch-c-11-12{width:91.66667%}.batch-g--gutter>.batch-c-11-12{margin:5px;width:calc(91.66667% - 10px)}.batch-c-11-24{width:45.83333%}.batch-g--gutter>.batch-c-11-24{margin:5px;width:calc(45.83333% - 10px)}.batch-c-13-24{width:54.16667%}.batch-g--gutter>.batch-c-13-24{margin:5px;width:calc(54.16667% - 10px)}.batch-c-17-24{width:70.83333%}.batch-g--gutter>.batch-c-17-24{margin:5px;width:calc(70.83333% - 10px)}.batch-c-19-24{width:79.16667%}.batch-g--gutter>.batch-c-19-24{margin:5px;width:calc(79.16667% - 10px)}.batch-c-23-24{width:95.83333%}.batch-g--gutter>.batch-c-23-24{margin:5px;width:calc(95.83333% - 10px)}@media screen and (min-width:600px){.batch-c-md-1-1{width:100%}.batch-g--gutter>.batch-c-md-1-1{margin:5px;width:calc(100% - 10px)}.batch-c-md-1-2{width:50%}.batch-g--gutter>.batch-c-md-1-2{margin:5px;width:calc(50% - 10px)}.batch-c-md-1-3{width:33.33333%}.batch-g--gutter>.batch-c-md-1-3{margin:5px;width:calc(33.33333% - 10px)}.batch-c-md-1-4{width:25%}.batch-g--gutter>.batch-c-md-1-4{margin:5px;width:calc(25% - 10px)}.batch-c-md-1-6{width:16.66667%}.batch-g--gutter>.batch-c-md-1-6{margin:5px;width:calc(16.66667% - 10px)}.batch-c-md-1-8{width:12.5%}.batch-g--gutter>.batch-c-md-1-8{margin:5px;width:calc(12.5% - 10px)}.batch-c-md-1-12{width:8.33333%}.batch-g--gutter>.batch-c-md-1-12{margin:5px;width:calc(8.33333% - 10px)}.batch-c-md-1-24{width:4.16667%}.batch-g--gutter>.batch-c-md-1-24{margin:5px;width:calc(4.16667% - 10px)}.batch-c-md-2-3{width:66.66667%}.batch-g--gutter>.batch-c-md-2-3{margin:5px;width:calc(66.66667% - 10px)}.batch-c-md-3-4{width:75%}.batch-g--gutter>.batch-c-md-3-4{margin:5px;width:calc(75% - 10px)}.batch-c-md-3-8{width:37.5%}.batch-g--gutter>.batch-c-md-3-8{margin:5px;width:calc(37.5% - 10px)}.batch-c-md-5-6{width:83.33333%}.batch-g--gutter>.batch-c-md-5-6{margin:5px;width:calc(83.33333% - 10px)}.batch-c-md-5-8{width:62.5%}.batch-g--gutter>.batch-c-md-5-8{margin:5px;width:calc(62.5% - 10px)}.batch-c-md-5-12{width:41.66667%}.batch-g--gutter>.batch-c-md-5-12{margin:5px;width:calc(41.66667% - 10px)}.batch-c-md-5-24{width:20.83333%}.batch-g--gutter>.batch-c-md-5-24{margin:5px;width:calc(20.83333% - 10px)}.batch-c-md-7-8{width:87.5%}.batch-g--gutter>.batch-c-md-7-8{margin:5px;width:calc(87.5% - 10px)}.batch-c-md-7-12{width:58.33333%}.batch-g--gutter>.batch-c-md-7-12{margin:5px;width:calc(58.33333% - 10px)}.batch-c-md-7-24{width:29.16667%}.batch-g--gutter>.batch-c-md-7-24{margin:5px;width:calc(29.16667% - 10px)}.batch-c-md-11-12{width:91.66667%}.batch-g--gutter>.batch-c-md-11-12{margin:5px;width:calc(91.66667% - 10px)}.batch-c-md-11-24{width:45.83333%}.batch-g--gutter>.batch-c-md-11-24{margin:5px;width:calc(45.83333% - 10px)}.batch-c-md-13-24{width:54.16667%}.batch-g--gutter>.batch-c-md-13-24{margin:5px;width:calc(54.16667% - 10px)}.batch-c-md-17-24{width:70.83333%}.batch-g--gutter>.batch-c-md-17-24{margin:5px;width:calc(70.83333% - 10px)}.batch-c-md-19-24{width:79.16667%}.batch-g--gutter>.batch-c-md-19-24{margin:5px;width:calc(79.16667% - 10px)}.batch-c-md-23-24{width:95.83333%}.batch-g--gutter>.batch-c-md-23-24{margin:5px;width:calc(95.83333% - 10px)}}@media screen and (min-width:900px){.batch-c-lg-1-1{width:100%}.batch-g--gutter>.batch-c-lg-1-1{margin:5px;width:calc(100% - 10px)}.batch-c-lg-1-2{width:50%}.batch-g--gutter>.batch-c-lg-1-2{margin:5px;width:calc(50% - 10px)}.batch-c-lg-1-3{width:33.33333%}.batch-g--gutter>.batch-c-lg-1-3{margin:5px;width:calc(33.33333% - 10px)}.batch-c-lg-1-4{width:25%}.batch-g--gutter>.batch-c-lg-1-4{margin:5px;width:calc(25% - 10px)}.batch-c-lg-1-6{width:16.66667%}.batch-g--gutter>.batch-c-lg-1-6{margin:5px;width:calc(16.66667% - 10px)}.batch-c-lg-1-8{width:12.5%}.batch-g--gutter>.batch-c-lg-1-8{margin:5px;width:calc(12.5% - 10px)}.batch-c-lg-1-12{width:8.33333%}.batch-g--gutter>.batch-c-lg-1-12{margin:5px;width:calc(8.33333% - 10px)}.batch-c-lg-1-24{width:4.16667%}.batch-g--gutter>.batch-c-lg-1-24{margin:5px;width:calc(4.16667% - 10px)}.batch-c-lg-2-3{width:66.66667%}.batch-g--gutter>.batch-c-lg-2-3{margin:5px;width:calc(66.66667% - 10px)}.batch-c-lg-3-4{width:75%}.batch-g--gutter>.batch-c-lg-3-4{margin:5px;width:calc(75% - 10px)}.batch-c-lg-3-8{width:37.5%}.batch-g--gutter>.batch-c-lg-3-8{margin:5px;width:calc(37.5% - 10px)}.batch-c-lg-5-6{width:83.33333%}.batch-g--gutter>.batch-c-lg-5-6{margin:5px;width:calc(83.33333% - 10px)}.batch-c-lg-5-8{width:62.5%}.batch-g--gutter>.batch-c-lg-5-8{margin:5px;width:calc(62.5% - 10px)}.batch-c-lg-5-12{width:41.66667%}.batch-g--gutter>.batch-c-lg-5-12{margin:5px;width:calc(41.66667% - 10px)}.batch-c-lg-5-24{width:20.83333%}.batch-g--gutter>.batch-c-lg-5-24{margin:5px;width:calc(20.83333% - 10px)}.batch-c-lg-7-8{width:87.5%}.batch-g--gutter>.batch-c-lg-7-8{margin:5px;width:calc(87.5% - 10px)}.batch-c-lg-7-12{width:58.33333%}.batch-g--gutter>.batch-c-lg-7-12{margin:5px;width:calc(58.33333% - 10px)}.batch-c-lg-7-24{width:29.16667%}.batch-g--gutter>.batch-c-lg-7-24{margin:5px;width:calc(29.16667% - 10px)}.batch-c-lg-11-12{width:91.66667%}.batch-g--gutter>.batch-c-lg-11-12{margin:5px;width:calc(91.66667% - 10px)}.batch-c-lg-11-24{width:45.83333%}.batch-g--gutter>.batch-c-lg-11-24{margin:5px;width:calc(45.83333% - 10px)}.batch-c-lg-13-24{width:54.16667%}.batch-g--gutter>.batch-c-lg-13-24{margin:5px;width:calc(54.16667% - 10px)}.batch-c-lg-17-24{width:70.83333%}.batch-g--gutter>.batch-c-lg-17-24{margin:5px;width:calc(70.83333% - 10px)}.batch-c-lg-19-24{width:79.16667%}.batch-g--gutter>.batch-c-lg-19-24{margin:5px;width:calc(79.16667% - 10px)}.batch-c-lg-23-24{width:95.83333%}.batch-g--gutter>.batch-c-lg-23-24{margin:5px;width:calc(95.83333% - 10px)}}@media screen and (min-width:600px){.batch-c--order-md-1{-ms-flex-order:1;order:1}.batch-c--order-md-2{-ms-flex-order:2;order:2}.batch-c--order-md-3{-ms-flex-order:3;order:3}.batch-c--order-md-4{-ms-flex-order:4;order:4}.batch-c--order-md-5{-ms-flex-order:5;order:5}.batch-c--order-md-6{-ms-flex-order:6;order:6}.batch-c--order-md-7{-ms-flex-order:7;order:7}.batch-c--order-md-8{-ms-flex-order:8;order:8}.batch-c--order-md-9{-ms-flex-order:9;order:9}.batch-c--order-md-10{-ms-flex-order:10;order:10}}@media screen and (min-width:900px){.batch-c--order-lg-1{-ms-flex-order:1;order:1}.batch-c--order-lg-2{-ms-flex-order:2;order:2}.batch-c--order-lg-3{-ms-flex-order:3;order:3}.batch-c--order-lg-4{-ms-flex-order:4;order:4}.batch-c--order-lg-5{-ms-flex-order:5;order:5}.batch-c--order-lg-6{-ms-flex-order:6;order:6}.batch-c--order-lg-7{-ms-flex-order:7;order:7}.batch-c--order-lg-8{-ms-flex-order:8;order:8}.batch-c--order-lg-9{-ms-flex-order:9;order:9}.batch-c--order-lg-10{-ms-flex-order:10;order:10}}.batch-c--valign-self-top{-ms-flex-item-align:start;align-self:flex-start}.batch-c--valign-self-bottom{-ms-flex-item-align:end;align-self:flex-end}.batch-c--valign-self-center{-ms-flex-item-align:center;align-self:center}
--------------------------------------------------------------------------------
/app/templates/css/batch.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | */.batch-g{-ms-flex-align:stretch;align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.batch-g--border>[class^=batch-c]{border:1px solid #666}.batch-g--gutter{margin:0 -5px}.batch-g--padding>[class^=batch-c]{padding:5px}.batch-g--padding-horizontal>[class^=batch-c]{padding-left:5px;padding-right:5px}.batch-g--padding-vertical>[class^=batch-c]{padding-bottom:5px;padding-top:5px}.batch-g--reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.batch-g--valign-top{-ms-flex-align:start;align-items:flex-start}.batch-g--valign-center{-ms-flex-align:center;align-items:center}.batch-g--valign-bottom{-ms-flex-align:end;align-items:flex-end}.batch-g--align-center{-ms-flex-pack:center;justify-content:center}.batch-g--align-right{-ms-flex-pack:end;justify-content:flex-end}[class^=batch-c]{box-sizing:border-box;-ms-flex:0 0 auto;flex:0 0 auto}.batch-c-1-1{width:100%}.batch-g--gutter>.batch-c-1-1{margin:5px;width:calc(100% - 10px)}.batch-c-1-2{width:50%}.batch-g--gutter>.batch-c-1-2{margin:5px;width:calc(50% - 10px)}.batch-c-1-3{width:33.33333%}.batch-g--gutter>.batch-c-1-3{margin:5px;width:calc(33.33333% - 10px)}.batch-c-1-4{width:25%}.batch-g--gutter>.batch-c-1-4{margin:5px;width:calc(25% - 10px)}.batch-c-1-6{width:16.66667%}.batch-g--gutter>.batch-c-1-6{margin:5px;width:calc(16.66667% - 10px)}.batch-c-1-8{width:12.5%}.batch-g--gutter>.batch-c-1-8{margin:5px;width:calc(12.5% - 10px)}.batch-c-1-12{width:8.33333%}.batch-g--gutter>.batch-c-1-12{margin:5px;width:calc(8.33333% - 10px)}.batch-c-1-24{width:4.16667%}.batch-g--gutter>.batch-c-1-24{margin:5px;width:calc(4.16667% - 10px)}.batch-c-2-3{width:66.66667%}.batch-g--gutter>.batch-c-2-3{margin:5px;width:calc(66.66667% - 10px)}.batch-c-3-4{width:75%}.batch-g--gutter>.batch-c-3-4{margin:5px;width:calc(75% - 10px)}.batch-c-3-8{width:37.5%}.batch-g--gutter>.batch-c-3-8{margin:5px;width:calc(37.5% - 10px)}.batch-c-5-6{width:83.33333%}.batch-g--gutter>.batch-c-5-6{margin:5px;width:calc(83.33333% - 10px)}.batch-c-5-8{width:62.5%}.batch-g--gutter>.batch-c-5-8{margin:5px;width:calc(62.5% - 10px)}.batch-c-5-12{width:41.66667%}.batch-g--gutter>.batch-c-5-12{margin:5px;width:calc(41.66667% - 10px)}.batch-c-5-24{width:20.83333%}.batch-g--gutter>.batch-c-5-24{margin:5px;width:calc(20.83333% - 10px)}.batch-c-7-8{width:87.5%}.batch-g--gutter>.batch-c-7-8{margin:5px;width:calc(87.5% - 10px)}.batch-c-7-12{width:58.33333%}.batch-g--gutter>.batch-c-7-12{margin:5px;width:calc(58.33333% - 10px)}.batch-c-7-24{width:29.16667%}.batch-g--gutter>.batch-c-7-24{margin:5px;width:calc(29.16667% - 10px)}.batch-c-11-12{width:91.66667%}.batch-g--gutter>.batch-c-11-12{margin:5px;width:calc(91.66667% - 10px)}.batch-c-11-24{width:45.83333%}.batch-g--gutter>.batch-c-11-24{margin:5px;width:calc(45.83333% - 10px)}.batch-c-13-24{width:54.16667%}.batch-g--gutter>.batch-c-13-24{margin:5px;width:calc(54.16667% - 10px)}.batch-c-17-24{width:70.83333%}.batch-g--gutter>.batch-c-17-24{margin:5px;width:calc(70.83333% - 10px)}.batch-c-19-24{width:79.16667%}.batch-g--gutter>.batch-c-19-24{margin:5px;width:calc(79.16667% - 10px)}.batch-c-23-24{width:95.83333%}.batch-g--gutter>.batch-c-23-24{margin:5px;width:calc(95.83333% - 10px)}@media screen and (min-width:600px){.batch-c-md-1-1{width:100%}.batch-g--gutter>.batch-c-md-1-1{margin:5px;width:calc(100% - 10px)}.batch-c-md-1-2{width:50%}.batch-g--gutter>.batch-c-md-1-2{margin:5px;width:calc(50% - 10px)}.batch-c-md-1-3{width:33.33333%}.batch-g--gutter>.batch-c-md-1-3{margin:5px;width:calc(33.33333% - 10px)}.batch-c-md-1-4{width:25%}.batch-g--gutter>.batch-c-md-1-4{margin:5px;width:calc(25% - 10px)}.batch-c-md-1-6{width:16.66667%}.batch-g--gutter>.batch-c-md-1-6{margin:5px;width:calc(16.66667% - 10px)}.batch-c-md-1-8{width:12.5%}.batch-g--gutter>.batch-c-md-1-8{margin:5px;width:calc(12.5% - 10px)}.batch-c-md-1-12{width:8.33333%}.batch-g--gutter>.batch-c-md-1-12{margin:5px;width:calc(8.33333% - 10px)}.batch-c-md-1-24{width:4.16667%}.batch-g--gutter>.batch-c-md-1-24{margin:5px;width:calc(4.16667% - 10px)}.batch-c-md-2-3{width:66.66667%}.batch-g--gutter>.batch-c-md-2-3{margin:5px;width:calc(66.66667% - 10px)}.batch-c-md-3-4{width:75%}.batch-g--gutter>.batch-c-md-3-4{margin:5px;width:calc(75% - 10px)}.batch-c-md-3-8{width:37.5%}.batch-g--gutter>.batch-c-md-3-8{margin:5px;width:calc(37.5% - 10px)}.batch-c-md-5-6{width:83.33333%}.batch-g--gutter>.batch-c-md-5-6{margin:5px;width:calc(83.33333% - 10px)}.batch-c-md-5-8{width:62.5%}.batch-g--gutter>.batch-c-md-5-8{margin:5px;width:calc(62.5% - 10px)}.batch-c-md-5-12{width:41.66667%}.batch-g--gutter>.batch-c-md-5-12{margin:5px;width:calc(41.66667% - 10px)}.batch-c-md-5-24{width:20.83333%}.batch-g--gutter>.batch-c-md-5-24{margin:5px;width:calc(20.83333% - 10px)}.batch-c-md-7-8{width:87.5%}.batch-g--gutter>.batch-c-md-7-8{margin:5px;width:calc(87.5% - 10px)}.batch-c-md-7-12{width:58.33333%}.batch-g--gutter>.batch-c-md-7-12{margin:5px;width:calc(58.33333% - 10px)}.batch-c-md-7-24{width:29.16667%}.batch-g--gutter>.batch-c-md-7-24{margin:5px;width:calc(29.16667% - 10px)}.batch-c-md-11-12{width:91.66667%}.batch-g--gutter>.batch-c-md-11-12{margin:5px;width:calc(91.66667% - 10px)}.batch-c-md-11-24{width:45.83333%}.batch-g--gutter>.batch-c-md-11-24{margin:5px;width:calc(45.83333% - 10px)}.batch-c-md-13-24{width:54.16667%}.batch-g--gutter>.batch-c-md-13-24{margin:5px;width:calc(54.16667% - 10px)}.batch-c-md-17-24{width:70.83333%}.batch-g--gutter>.batch-c-md-17-24{margin:5px;width:calc(70.83333% - 10px)}.batch-c-md-19-24{width:79.16667%}.batch-g--gutter>.batch-c-md-19-24{margin:5px;width:calc(79.16667% - 10px)}.batch-c-md-23-24{width:95.83333%}.batch-g--gutter>.batch-c-md-23-24{margin:5px;width:calc(95.83333% - 10px)}}@media screen and (min-width:900px){.batch-c-lg-1-1{width:100%}.batch-g--gutter>.batch-c-lg-1-1{margin:5px;width:calc(100% - 10px)}.batch-c-lg-1-2{width:50%}.batch-g--gutter>.batch-c-lg-1-2{margin:5px;width:calc(50% - 10px)}.batch-c-lg-1-3{width:33.33333%}.batch-g--gutter>.batch-c-lg-1-3{margin:5px;width:calc(33.33333% - 10px)}.batch-c-lg-1-4{width:25%}.batch-g--gutter>.batch-c-lg-1-4{margin:5px;width:calc(25% - 10px)}.batch-c-lg-1-6{width:16.66667%}.batch-g--gutter>.batch-c-lg-1-6{margin:5px;width:calc(16.66667% - 10px)}.batch-c-lg-1-8{width:12.5%}.batch-g--gutter>.batch-c-lg-1-8{margin:5px;width:calc(12.5% - 10px)}.batch-c-lg-1-12{width:8.33333%}.batch-g--gutter>.batch-c-lg-1-12{margin:5px;width:calc(8.33333% - 10px)}.batch-c-lg-1-24{width:4.16667%}.batch-g--gutter>.batch-c-lg-1-24{margin:5px;width:calc(4.16667% - 10px)}.batch-c-lg-2-3{width:66.66667%}.batch-g--gutter>.batch-c-lg-2-3{margin:5px;width:calc(66.66667% - 10px)}.batch-c-lg-3-4{width:75%}.batch-g--gutter>.batch-c-lg-3-4{margin:5px;width:calc(75% - 10px)}.batch-c-lg-3-8{width:37.5%}.batch-g--gutter>.batch-c-lg-3-8{margin:5px;width:calc(37.5% - 10px)}.batch-c-lg-5-6{width:83.33333%}.batch-g--gutter>.batch-c-lg-5-6{margin:5px;width:calc(83.33333% - 10px)}.batch-c-lg-5-8{width:62.5%}.batch-g--gutter>.batch-c-lg-5-8{margin:5px;width:calc(62.5% - 10px)}.batch-c-lg-5-12{width:41.66667%}.batch-g--gutter>.batch-c-lg-5-12{margin:5px;width:calc(41.66667% - 10px)}.batch-c-lg-5-24{width:20.83333%}.batch-g--gutter>.batch-c-lg-5-24{margin:5px;width:calc(20.83333% - 10px)}.batch-c-lg-7-8{width:87.5%}.batch-g--gutter>.batch-c-lg-7-8{margin:5px;width:calc(87.5% - 10px)}.batch-c-lg-7-12{width:58.33333%}.batch-g--gutter>.batch-c-lg-7-12{margin:5px;width:calc(58.33333% - 10px)}.batch-c-lg-7-24{width:29.16667%}.batch-g--gutter>.batch-c-lg-7-24{margin:5px;width:calc(29.16667% - 10px)}.batch-c-lg-11-12{width:91.66667%}.batch-g--gutter>.batch-c-lg-11-12{margin:5px;width:calc(91.66667% - 10px)}.batch-c-lg-11-24{width:45.83333%}.batch-g--gutter>.batch-c-lg-11-24{margin:5px;width:calc(45.83333% - 10px)}.batch-c-lg-13-24{width:54.16667%}.batch-g--gutter>.batch-c-lg-13-24{margin:5px;width:calc(54.16667% - 10px)}.batch-c-lg-17-24{width:70.83333%}.batch-g--gutter>.batch-c-lg-17-24{margin:5px;width:calc(70.83333% - 10px)}.batch-c-lg-19-24{width:79.16667%}.batch-g--gutter>.batch-c-lg-19-24{margin:5px;width:calc(79.16667% - 10px)}.batch-c-lg-23-24{width:95.83333%}.batch-g--gutter>.batch-c-lg-23-24{margin:5px;width:calc(95.83333% - 10px)}}@media screen and (min-width:600px){.batch-c--order-md-1{-ms-flex-order:1;order:1}.batch-c--order-md-2{-ms-flex-order:2;order:2}.batch-c--order-md-3{-ms-flex-order:3;order:3}.batch-c--order-md-4{-ms-flex-order:4;order:4}.batch-c--order-md-5{-ms-flex-order:5;order:5}.batch-c--order-md-6{-ms-flex-order:6;order:6}.batch-c--order-md-7{-ms-flex-order:7;order:7}.batch-c--order-md-8{-ms-flex-order:8;order:8}.batch-c--order-md-9{-ms-flex-order:9;order:9}.batch-c--order-md-10{-ms-flex-order:10;order:10}}@media screen and (min-width:900px){.batch-c--order-lg-1{-ms-flex-order:1;order:1}.batch-c--order-lg-2{-ms-flex-order:2;order:2}.batch-c--order-lg-3{-ms-flex-order:3;order:3}.batch-c--order-lg-4{-ms-flex-order:4;order:4}.batch-c--order-lg-5{-ms-flex-order:5;order:5}.batch-c--order-lg-6{-ms-flex-order:6;order:6}.batch-c--order-lg-7{-ms-flex-order:7;order:7}.batch-c--order-lg-8{-ms-flex-order:8;order:8}.batch-c--order-lg-9{-ms-flex-order:9;order:9}.batch-c--order-lg-10{-ms-flex-order:10;order:10}}.batch-c--valign-self-top{-ms-flex-item-align:start;align-self:flex-start}.batch-c--valign-self-bottom{-ms-flex-item-align:end;align-self:flex-end}.batch-c--valign-self-center{-ms-flex-item-align:center;align-self:center}
--------------------------------------------------------------------------------
/app/assets/img/batch-logo-small.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
111 |
--------------------------------------------------------------------------------
/app/assets/img/batch-logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
120 |
--------------------------------------------------------------------------------
/app/assets/css/docs.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | *//*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}fieldset{background-color:#f7f7f7;border:1px solid #ddd;margin:0 0 .75em;padding:1.5em}input,label,select{display:block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:1em}label{font-weight:600;margin-bottom:.375em}label.required::after{content:"*"}label abbr{display:none}input:not([type]),input[type=datetime],input[type=datetime-local],input[type=email],input[type=month],input[type=password],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],input[type=number],input[type=search],input[type=color],input[type=date],select[multiple=multiple],textarea{background-color:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:inset 0 1px 3px rgba(0,0,0,.06);box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:1em;margin-bottom:.75em;padding:.5em;transition:border-color;width:100%}input:not([type]):hover,input[type=datetime]:hover,input[type=datetime-local]:hover,input[type=email]:hover,input[type=month]:hover,input[type=password]:hover,input[type=tel]:hover,input[type=text]:hover,input[type=time]:hover,input[type=url]:hover,input[type=week]:hover,input[type=number]:hover,input[type=search]:hover,input[type=color]:hover,input[type=date]:hover,select[multiple=multiple]:hover,textarea:hover{border-color:#c4c4c4}input:not([type]):focus,input[type=datetime]:focus,input[type=datetime-local]:focus,input[type=email]:focus,input[type=month]:focus,input[type=password]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,input[type=number]:focus,input[type=search]:focus,input[type=color]:focus,input[type=date]:focus,select[multiple=multiple]:focus,textarea:focus{border-color:#8EA604;box-shadow:inset 0 1px 3px rgba(0,0,0,.06),0 0 5px rgba(121,141,3,.7);outline:0}textarea{resize:vertical}input[type=search]{appearance:none}input[type=checkbox],input[type=radio]{display:inline;margin-right:.375em}input[type=file]{padding-bottom:.75em;width:100%}select{margin-bottom:1.5em;max-width:100%;width:auto}ol,ul{list-style-type:none;margin:0;padding:0}dl{margin-bottom:.75em}dl dt{font-weight:700;margin-top:.75em}dl dd{margin:0}table{border-collapse:collapse;margin:.75em 0;table-layout:fixed;width:100%}th{border-bottom:1px solid #b7b7b7;font-weight:600;padding:.75em 0;text-align:left}td{border-bottom:1px solid #ddd;padding:.75em 0}td,th,tr{vertical-align:middle}body{-webkit-font-smoothing:antialiased;color:#333;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:1em;line-height:1.5}h1{font-size:2.25em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}h2{font-size:2em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}h3{font-size:1.75em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}h4{font-size:1.25em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}h5,h6{font-size:1.15em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}p{margin:0 0 .75em}a{color:#8EA604;text-decoration:none;transition:color .1s linear}a:active,a:focus,a:hover{color:#4e5b02}a:active,a:focus{outline:0}hr{border-bottom:1px solid #ddd;border-left:none;border-right:none;border-top:none;margin:1.5em 0}img,picture{margin:0;max-width:100%}::-moz-selection{background:#f1fdac}::selection{background:#f1fdac}.btn,button{-webkit-font-smoothing:antialiased;appearance:none;background-color:#8EA604;border-radius:3px;border:none;color:#fff;cursor:pointer;display:inline-block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:1em;font-weight:400;line-height:1;margin-right:.75em;padding:.75em 1em;text-align:center;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}@media screen and (min-width:600px){.btn,button{margin-right:1.5em}}.btn:focus,.btn:hover,button:focus,button:hover{background-color:#4e5b02;color:#fff}.btn:disabled,button:disabled{cursor:not-allowed;opacity:.5}.btn+.btn:last-of-type,.btn+button:last-of-type,button+.btn:last-of-type,button+button:last-of-type{margin-right:0}.btn.btn--secondary,button.btn--secondary{background-color:#fff;border:1px solid #8EA604;color:#8EA604}.btn.btn--secondary:focus,.btn.btn--secondary:hover,button.btn--secondary:focus,button.btn--secondary:hover{background-color:#f9f9f9}.btn--small{font-size:.8em;margin-right:.75em;padding:.75em .9em}.btn--small+.btn--small:last-of-type{margin-right:0}.btn_notes{display:block;font-size:.7em;font-style:italic}@media screen and (min-width:600px){.btn_notes{display:inline}}.link--light{color:#fff}.link--light:focus,.link--light:hover{color:#EC5B05}.link--underlined{border-bottom-color:#8EA604;border-bottom-style:solid;border-bottom-width:2px}.link--underlined.link--light{border-bottom-color:rgba(255,255,255,.25)}.link--underlined.link--light:hover{border-bottom-color:rgba(236,91,5,.25)}.l-row{overflow:hidden;padding:1.5em .75em}@media screen and (min-width:600px){.l-row{padding:3em .75em}}.l-row--border-top{border-top:1px solid #BF3100}.l-row--amber{background-color:#BF3100;color:#fff}.l-row--green{background-color:#8EA604;color:#fff}.l-row--gold{background-color:#EC5B05;color:#fff}.l-row--gray{background-color:#ddd}.l-row--gray--light{background-color:#f9f9f9}.l-container{margin-left:auto;margin-right:auto;max-width:1080px}.l-section{margin-bottom:3em}.l-section:last-of-type{margin-bottom:0}@media screen and (min-width:900px){.batch-logo{margin-bottom:0}}.batch-logo_image{max-width:280px}.utilities{text-align:center}@media screen and (min-width:900px){.utilities{text-align:right}}.utilities_item{padding-bottom:1.5em}.hero{padding-bottom:2.25em;padding-top:2.25em}@media screen and (min-width:600px){.hero{padding-bottom:3em;padding-top:3em}}.hero-headline{font-size:2.5em;text-align:center;text-shadow:0 2px 0 rgba(51,51,51,.2)}.hero-warehouse{margin:0 auto;line-height:0}@media screen and (min-width:600px){.hero-warehouse{width:90%}}@media screen and (min-width:900px){.hero-warehouse{width:70%}}.bi-barrel{position:relative;top:-1000px;transition:top .2s linear}.bi-barrel.is-dropped{top:0}.rotate-flip{-webkit-transform:rotate(90deg) scaleX(-1);transform:rotate(90deg) scaleX(-1)}.feature-object{padding:0 1.5em;text-align:center}.feature-object_icon{color:#EC5B05;font-size:4em}@media screen and (min-width:900px){.feature-object_icon{font-size:7em}}.comment{font-family:Consolas,monaco,monospace;opacity:.5}pre{background:#f9f9f9;border-radius:4px;color:#333;font-family:Consolas,monaco,monospace;font-size:.8em;line-height:1.25em;overflow:auto;padding:5px;white-space:pre-line}.pre-block{white-space:pre}code{font-family:Consolas,monaco,monospace;font-size:.8em;line-height:1.25em}code .code-o{color:#EC5B05}code .code-c{color:#8EA604}code .code-n{color:#BF3100}.batch-g--docs{background:#fff6f1;margin:0 -5px}.batch-g--docs [class^=batch-c]{background:#fff}.batch-g--border-lg{background:#EC5B05}.batch-g--border-lg [class^=batch-c]{border-color:#EC5B05}.batch-g--filled{background:#f9f9f9}.batch-g--filled [class^=batch-c]{background:#ddd;font-size:.8em}.batch-g--dl{font-size:.8em;margin:0 0 2.25em}.batch-g--dl>[class^=batch-c]:nth-child(odd){text-align:right}.batch-g--templates{margin-bottom:.75em}.batch-g--templates header{background:#EC5B05;color:#fff;text-align:center}@media screen and (min-width:600px){.batch-g--templates header{height:65px}}.batch-g--templates aside{background:#BF3100;color:#fff;text-align:center}@media screen and (min-width:600px){.batch-g--templates aside{height:200px}}.batch-g--templates aside:nth-of-type(2){opacity:.7}.batch-g--templates main{background:#8EA604;color:#fff;text-align:center}@media screen and (min-width:600px){.batch-g--templates main{height:200px}}.batch-g--templates footer{background:#333;color:#fff;text-align:center}@media screen and (min-width:600px){.batch-g--templates footer{height:65px}}.highlight{color:#333;margin-bottom:10px;text-align:left}.strong{font-weight:700}.small-text{font-size:.75em;line-height:1.25em}.highlight-sm .strong{font-weight:700}@media screen and (min-width:600px){.highlight-sm{opacity:.4}.highlight-sm .strong{font-weight:400}}.highlight-md{opacity:.4}.highlight-md .strong{font-weight:400}@media screen and (min-width:600px){.highlight-md{opacity:1}.highlight-md .strong{font-weight:700}}@media screen and (min-width:900px){.highlight-md{opacity:.4}.highlight-md .strong{font-weight:400}}.highlight-lg{opacity:.4}.highlight-lg .strong{font-weight:400}@media screen and (min-width:900px){.highlight-lg{opacity:1}.highlight-lg .strong{font-weight:700}}@media screen and (min-width:600px){.show-sm{display:none}}@media screen and (max-width:600px){.hide-sm{display:none}}@media screen and (max-width:600px){.show-md{display:none}}@media screen and (min-width:900px){.show-md{display:none}}@media (min-width:600px) and (max-width:900px){.hide-md{display:none}}@media screen and (max-width:600px){.show-lg{display:none}}@media (min-width:600px) and (max-width:900px){.show-lg{display:none}}@media screen and (min-width:900px){.hide-lg{display:none}}.footer{padding-bottom:4.5em;padding-top:4.5em;font-size:.8em}
--------------------------------------------------------------------------------
/app/templates/css/docs.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | *//*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}fieldset{background-color:#f7f7f7;border:1px solid #ddd;margin:0 0 .75em;padding:1.5em}input,label,select{display:block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:1em}label{font-weight:600;margin-bottom:.375em}label.required::after{content:"*"}label abbr{display:none}input:not([type]),input[type=datetime],input[type=datetime-local],input[type=email],input[type=month],input[type=password],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],input[type=number],input[type=search],input[type=color],input[type=date],select[multiple=multiple],textarea{background-color:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:inset 0 1px 3px rgba(0,0,0,.06);box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:1em;margin-bottom:.75em;padding:.5em;transition:border-color;width:100%}input:not([type]):hover,input[type=datetime]:hover,input[type=datetime-local]:hover,input[type=email]:hover,input[type=month]:hover,input[type=password]:hover,input[type=tel]:hover,input[type=text]:hover,input[type=time]:hover,input[type=url]:hover,input[type=week]:hover,input[type=number]:hover,input[type=search]:hover,input[type=color]:hover,input[type=date]:hover,select[multiple=multiple]:hover,textarea:hover{border-color:#c4c4c4}input:not([type]):focus,input[type=datetime]:focus,input[type=datetime-local]:focus,input[type=email]:focus,input[type=month]:focus,input[type=password]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,input[type=number]:focus,input[type=search]:focus,input[type=color]:focus,input[type=date]:focus,select[multiple=multiple]:focus,textarea:focus{border-color:#8EA604;box-shadow:inset 0 1px 3px rgba(0,0,0,.06),0 0 5px rgba(121,141,3,.7);outline:0}textarea{resize:vertical}input[type=search]{appearance:none}input[type=checkbox],input[type=radio]{display:inline;margin-right:.375em}input[type=file]{padding-bottom:.75em;width:100%}select{margin-bottom:1.5em;max-width:100%;width:auto}ol,ul{list-style-type:none;margin:0;padding:0}dl{margin-bottom:.75em}dl dt{font-weight:700;margin-top:.75em}dl dd{margin:0}table{border-collapse:collapse;margin:.75em 0;table-layout:fixed;width:100%}th{border-bottom:1px solid #b7b7b7;font-weight:600;padding:.75em 0;text-align:left}td{border-bottom:1px solid #ddd;padding:.75em 0}td,th,tr{vertical-align:middle}body{-webkit-font-smoothing:antialiased;color:#333;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:1em;line-height:1.5}h1{font-size:2.25em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}h2{font-size:2em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}h3{font-size:1.75em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}h4{font-size:1.25em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}h5,h6{font-size:1.15em;font-family:Raleway,sans-serif;font-weight:500;line-height:1.2;margin:0 0 .75em}p{margin:0 0 .75em}a{color:#8EA604;text-decoration:none;transition:color .1s linear}a:active,a:focus,a:hover{color:#4e5b02}a:active,a:focus{outline:0}hr{border-bottom:1px solid #ddd;border-left:none;border-right:none;border-top:none;margin:1.5em 0}img,picture{margin:0;max-width:100%}::-moz-selection{background:#f1fdac}::selection{background:#f1fdac}.btn,button{-webkit-font-smoothing:antialiased;appearance:none;background-color:#8EA604;border-radius:3px;border:none;color:#fff;cursor:pointer;display:inline-block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:1em;font-weight:400;line-height:1;margin-right:.75em;padding:.75em 1em;text-align:center;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}@media screen and (min-width:600px){.btn,button{margin-right:1.5em}}.btn:focus,.btn:hover,button:focus,button:hover{background-color:#4e5b02;color:#fff}.btn:disabled,button:disabled{cursor:not-allowed;opacity:.5}.btn+.btn:last-of-type,.btn+button:last-of-type,button+.btn:last-of-type,button+button:last-of-type{margin-right:0}.btn.btn--secondary,button.btn--secondary{background-color:#fff;border:1px solid #8EA604;color:#8EA604}.btn.btn--secondary:focus,.btn.btn--secondary:hover,button.btn--secondary:focus,button.btn--secondary:hover{background-color:#f9f9f9}.btn--small{font-size:.8em;margin-right:.75em;padding:.75em .9em}.btn--small+.btn--small:last-of-type{margin-right:0}.btn_notes{display:block;font-size:.7em;font-style:italic}@media screen and (min-width:600px){.btn_notes{display:inline}}.link--light{color:#fff}.link--light:focus,.link--light:hover{color:#EC5B05}.link--underlined{border-bottom-color:#8EA604;border-bottom-style:solid;border-bottom-width:2px}.link--underlined.link--light{border-bottom-color:rgba(255,255,255,.25)}.link--underlined.link--light:hover{border-bottom-color:rgba(236,91,5,.25)}.l-row{overflow:hidden;padding:1.5em .75em}@media screen and (min-width:600px){.l-row{padding:3em .75em}}.l-row--border-top{border-top:1px solid #BF3100}.l-row--amber{background-color:#BF3100;color:#fff}.l-row--green{background-color:#8EA604;color:#fff}.l-row--gold{background-color:#EC5B05;color:#fff}.l-row--gray{background-color:#ddd}.l-row--gray--light{background-color:#f9f9f9}.l-container{margin-left:auto;margin-right:auto;max-width:1080px}.l-section{margin-bottom:3em}.l-section:last-of-type{margin-bottom:0}@media screen and (min-width:900px){.batch-logo{margin-bottom:0}}.batch-logo_image{max-width:280px}.utilities{text-align:center}@media screen and (min-width:900px){.utilities{text-align:right}}.utilities_item{padding-bottom:1.5em}.hero{padding-bottom:2.25em;padding-top:2.25em}@media screen and (min-width:600px){.hero{padding-bottom:3em;padding-top:3em}}.hero-headline{font-size:2.5em;text-align:center;text-shadow:0 2px 0 rgba(51,51,51,.2)}.hero-warehouse{margin:0 auto;line-height:0}@media screen and (min-width:600px){.hero-warehouse{width:90%}}@media screen and (min-width:900px){.hero-warehouse{width:70%}}.bi-barrel{position:relative;top:-1000px;transition:top .2s linear}.bi-barrel.is-dropped{top:0}.rotate-flip{-webkit-transform:rotate(90deg) scaleX(-1);transform:rotate(90deg) scaleX(-1)}.feature-object{padding:0 1.5em;text-align:center}.feature-object_icon{color:#EC5B05;font-size:4em}@media screen and (min-width:900px){.feature-object_icon{font-size:7em}}.comment{font-family:Consolas,monaco,monospace;opacity:.5}pre{background:#f9f9f9;border-radius:4px;color:#333;font-family:Consolas,monaco,monospace;font-size:.8em;line-height:1.25em;overflow:auto;padding:5px;white-space:pre-line}.pre-block{white-space:pre}code{font-family:Consolas,monaco,monospace;font-size:.8em;line-height:1.25em}code .code-o{color:#EC5B05}code .code-c{color:#8EA604}code .code-n{color:#BF3100}.batch-g--docs{background:#fff6f1;margin:0 -5px}.batch-g--docs [class^=batch-c]{background:#fff}.batch-g--border-lg{background:#EC5B05}.batch-g--border-lg [class^=batch-c]{border-color:#EC5B05}.batch-g--filled{background:#f9f9f9}.batch-g--filled [class^=batch-c]{background:#ddd;font-size:.8em}.batch-g--dl{font-size:.8em;margin:0 0 2.25em}.batch-g--dl>[class^=batch-c]:nth-child(odd){text-align:right}.batch-g--templates{margin-bottom:.75em}.batch-g--templates header{background:#EC5B05;color:#fff;text-align:center}@media screen and (min-width:600px){.batch-g--templates header{height:65px}}.batch-g--templates aside{background:#BF3100;color:#fff;text-align:center}@media screen and (min-width:600px){.batch-g--templates aside{height:200px}}.batch-g--templates aside:nth-of-type(2){opacity:.7}.batch-g--templates main{background:#8EA604;color:#fff;text-align:center}@media screen and (min-width:600px){.batch-g--templates main{height:200px}}.batch-g--templates footer{background:#333;color:#fff;text-align:center}@media screen and (min-width:600px){.batch-g--templates footer{height:65px}}.highlight{color:#333;margin-bottom:10px;text-align:left}.strong{font-weight:700}.small-text{font-size:.75em;line-height:1.25em}.highlight-sm .strong{font-weight:700}@media screen and (min-width:600px){.highlight-sm{opacity:.4}.highlight-sm .strong{font-weight:400}}.highlight-md{opacity:.4}.highlight-md .strong{font-weight:400}@media screen and (min-width:600px){.highlight-md{opacity:1}.highlight-md .strong{font-weight:700}}@media screen and (min-width:900px){.highlight-md{opacity:.4}.highlight-md .strong{font-weight:400}}.highlight-lg{opacity:.4}.highlight-lg .strong{font-weight:400}@media screen and (min-width:900px){.highlight-lg{opacity:1}.highlight-lg .strong{font-weight:700}}@media screen and (min-width:600px){.show-sm{display:none}}@media screen and (max-width:600px){.hide-sm{display:none}}@media screen and (max-width:600px){.show-md{display:none}}@media screen and (min-width:900px){.show-md{display:none}}@media (min-width:600px) and (max-width:900px){.hide-md{display:none}}@media screen and (max-width:600px){.show-lg{display:none}}@media (min-width:600px) and (max-width:900px){.show-lg{display:none}}@media screen and (min-width:900px){.hide-lg{display:none}}.footer{padding-bottom:4.5em;padding-top:4.5em;font-size:.8em}
--------------------------------------------------------------------------------
/app/assets/css/batch.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | */
9 | /* Batch grid wrapper */
10 | .batch-g {
11 | -ms-flex-align: stretch;
12 | align-items: stretch;
13 | display: -ms-flexbox;
14 | display: flex;
15 | -ms-flex-direction: row;
16 | flex-direction: row;
17 | -ms-flex-wrap: wrap;
18 | flex-wrap: wrap;
19 | -ms-flex-pack: start;
20 | justify-content: flex-start; }
21 |
22 | /* Batch grid modifiers */
23 | .batch-g--border > [class^="batch-c"] {
24 | border: 1px solid #666666; }
25 |
26 | .batch-g--gutter {
27 | margin: 0 -5px; }
28 |
29 | .batch-g--padding > [class^="batch-c"] {
30 | padding: 5px; }
31 |
32 | .batch-g--padding-horizontal > [class^="batch-c"] {
33 | padding-left: 5px;
34 | padding-right: 5px; }
35 |
36 | .batch-g--padding-vertical > [class^="batch-c"] {
37 | padding-bottom: 5px;
38 | padding-top: 5px; }
39 |
40 | .batch-g--reverse {
41 | -ms-flex-direction: row-reverse;
42 | flex-direction: row-reverse; }
43 |
44 | .batch-g--valign-top {
45 | -ms-flex-align: start;
46 | align-items: flex-start; }
47 |
48 | .batch-g--valign-center {
49 | -ms-flex-align: center;
50 | align-items: center; }
51 |
52 | .batch-g--valign-bottom {
53 | -ms-flex-align: end;
54 | align-items: flex-end; }
55 |
56 | .batch-g--align-center {
57 | -ms-flex-pack: center;
58 | justify-content: center; }
59 |
60 | .batch-g--align-right {
61 | -ms-flex-pack: end;
62 | justify-content: flex-end; }
63 |
64 | /* Batch grid cells */
65 | [class^="batch-c"] {
66 | box-sizing: border-box;
67 | -ms-flex: 0 0 auto;
68 | flex: 0 0 auto; }
69 |
70 | /* Base cells */
71 | .batch-c-1-1 {
72 | width: 100%; }
73 | .batch-g--gutter > .batch-c-1-1 {
74 | margin: 5px;
75 | width: calc(100% - 10px); }
76 |
77 | .batch-c-1-2 {
78 | width: 50%; }
79 | .batch-g--gutter > .batch-c-1-2 {
80 | margin: 5px;
81 | width: calc(50% - 10px); }
82 |
83 | .batch-c-1-3 {
84 | width: 33.33333%; }
85 | .batch-g--gutter > .batch-c-1-3 {
86 | margin: 5px;
87 | width: calc(33.33333% - 10px); }
88 |
89 | .batch-c-1-4 {
90 | width: 25%; }
91 | .batch-g--gutter > .batch-c-1-4 {
92 | margin: 5px;
93 | width: calc(25% - 10px); }
94 |
95 | .batch-c-1-6 {
96 | width: 16.66667%; }
97 | .batch-g--gutter > .batch-c-1-6 {
98 | margin: 5px;
99 | width: calc(16.66667% - 10px); }
100 |
101 | .batch-c-1-8 {
102 | width: 12.5%; }
103 | .batch-g--gutter > .batch-c-1-8 {
104 | margin: 5px;
105 | width: calc(12.5% - 10px); }
106 |
107 | .batch-c-1-12 {
108 | width: 8.33333%; }
109 | .batch-g--gutter > .batch-c-1-12 {
110 | margin: 5px;
111 | width: calc(8.33333% - 10px); }
112 |
113 | .batch-c-1-24 {
114 | width: 4.16667%; }
115 | .batch-g--gutter > .batch-c-1-24 {
116 | margin: 5px;
117 | width: calc(4.16667% - 10px); }
118 |
119 | .batch-c-2-3 {
120 | width: 66.66667%; }
121 | .batch-g--gutter > .batch-c-2-3 {
122 | margin: 5px;
123 | width: calc(66.66667% - 10px); }
124 |
125 | .batch-c-3-4 {
126 | width: 75%; }
127 | .batch-g--gutter > .batch-c-3-4 {
128 | margin: 5px;
129 | width: calc(75% - 10px); }
130 |
131 | .batch-c-3-8 {
132 | width: 37.5%; }
133 | .batch-g--gutter > .batch-c-3-8 {
134 | margin: 5px;
135 | width: calc(37.5% - 10px); }
136 |
137 | .batch-c-5-6 {
138 | width: 83.33333%; }
139 | .batch-g--gutter > .batch-c-5-6 {
140 | margin: 5px;
141 | width: calc(83.33333% - 10px); }
142 |
143 | .batch-c-5-8 {
144 | width: 62.5%; }
145 | .batch-g--gutter > .batch-c-5-8 {
146 | margin: 5px;
147 | width: calc(62.5% - 10px); }
148 |
149 | .batch-c-5-12 {
150 | width: 41.66667%; }
151 | .batch-g--gutter > .batch-c-5-12 {
152 | margin: 5px;
153 | width: calc(41.66667% - 10px); }
154 |
155 | .batch-c-5-24 {
156 | width: 20.83333%; }
157 | .batch-g--gutter > .batch-c-5-24 {
158 | margin: 5px;
159 | width: calc(20.83333% - 10px); }
160 |
161 | .batch-c-7-8 {
162 | width: 87.5%; }
163 | .batch-g--gutter > .batch-c-7-8 {
164 | margin: 5px;
165 | width: calc(87.5% - 10px); }
166 |
167 | .batch-c-7-12 {
168 | width: 58.33333%; }
169 | .batch-g--gutter > .batch-c-7-12 {
170 | margin: 5px;
171 | width: calc(58.33333% - 10px); }
172 |
173 | .batch-c-7-24 {
174 | width: 29.16667%; }
175 | .batch-g--gutter > .batch-c-7-24 {
176 | margin: 5px;
177 | width: calc(29.16667% - 10px); }
178 |
179 | .batch-c-11-12 {
180 | width: 91.66667%; }
181 | .batch-g--gutter > .batch-c-11-12 {
182 | margin: 5px;
183 | width: calc(91.66667% - 10px); }
184 |
185 | .batch-c-11-24 {
186 | width: 45.83333%; }
187 | .batch-g--gutter > .batch-c-11-24 {
188 | margin: 5px;
189 | width: calc(45.83333% - 10px); }
190 |
191 | .batch-c-13-24 {
192 | width: 54.16667%; }
193 | .batch-g--gutter > .batch-c-13-24 {
194 | margin: 5px;
195 | width: calc(54.16667% - 10px); }
196 |
197 | .batch-c-17-24 {
198 | width: 70.83333%; }
199 | .batch-g--gutter > .batch-c-17-24 {
200 | margin: 5px;
201 | width: calc(70.83333% - 10px); }
202 |
203 | .batch-c-19-24 {
204 | width: 79.16667%; }
205 | .batch-g--gutter > .batch-c-19-24 {
206 | margin: 5px;
207 | width: calc(79.16667% - 10px); }
208 |
209 | .batch-c-23-24 {
210 | width: 95.83333%; }
211 | .batch-g--gutter > .batch-c-23-24 {
212 | margin: 5px;
213 | width: calc(95.83333% - 10px); }
214 |
215 | /* Medium screen cells */
216 | @media screen and (min-width: 600px) {
217 | .batch-c-md-1-1 {
218 | width: 100%; }
219 | .batch-g--gutter > .batch-c-md-1-1 {
220 | margin: 5px;
221 | width: calc(100% - 10px); }
222 | .batch-c-md-1-2 {
223 | width: 50%; }
224 | .batch-g--gutter > .batch-c-md-1-2 {
225 | margin: 5px;
226 | width: calc(50% - 10px); }
227 | .batch-c-md-1-3 {
228 | width: 33.33333%; }
229 | .batch-g--gutter > .batch-c-md-1-3 {
230 | margin: 5px;
231 | width: calc(33.33333% - 10px); }
232 | .batch-c-md-1-4 {
233 | width: 25%; }
234 | .batch-g--gutter > .batch-c-md-1-4 {
235 | margin: 5px;
236 | width: calc(25% - 10px); }
237 | .batch-c-md-1-6 {
238 | width: 16.66667%; }
239 | .batch-g--gutter > .batch-c-md-1-6 {
240 | margin: 5px;
241 | width: calc(16.66667% - 10px); }
242 | .batch-c-md-1-8 {
243 | width: 12.5%; }
244 | .batch-g--gutter > .batch-c-md-1-8 {
245 | margin: 5px;
246 | width: calc(12.5% - 10px); }
247 | .batch-c-md-1-12 {
248 | width: 8.33333%; }
249 | .batch-g--gutter > .batch-c-md-1-12 {
250 | margin: 5px;
251 | width: calc(8.33333% - 10px); }
252 | .batch-c-md-1-24 {
253 | width: 4.16667%; }
254 | .batch-g--gutter > .batch-c-md-1-24 {
255 | margin: 5px;
256 | width: calc(4.16667% - 10px); }
257 | .batch-c-md-2-3 {
258 | width: 66.66667%; }
259 | .batch-g--gutter > .batch-c-md-2-3 {
260 | margin: 5px;
261 | width: calc(66.66667% - 10px); }
262 | .batch-c-md-3-4 {
263 | width: 75%; }
264 | .batch-g--gutter > .batch-c-md-3-4 {
265 | margin: 5px;
266 | width: calc(75% - 10px); }
267 | .batch-c-md-3-8 {
268 | width: 37.5%; }
269 | .batch-g--gutter > .batch-c-md-3-8 {
270 | margin: 5px;
271 | width: calc(37.5% - 10px); }
272 | .batch-c-md-5-6 {
273 | width: 83.33333%; }
274 | .batch-g--gutter > .batch-c-md-5-6 {
275 | margin: 5px;
276 | width: calc(83.33333% - 10px); }
277 | .batch-c-md-5-8 {
278 | width: 62.5%; }
279 | .batch-g--gutter > .batch-c-md-5-8 {
280 | margin: 5px;
281 | width: calc(62.5% - 10px); }
282 | .batch-c-md-5-12 {
283 | width: 41.66667%; }
284 | .batch-g--gutter > .batch-c-md-5-12 {
285 | margin: 5px;
286 | width: calc(41.66667% - 10px); }
287 | .batch-c-md-5-24 {
288 | width: 20.83333%; }
289 | .batch-g--gutter > .batch-c-md-5-24 {
290 | margin: 5px;
291 | width: calc(20.83333% - 10px); }
292 | .batch-c-md-7-8 {
293 | width: 87.5%; }
294 | .batch-g--gutter > .batch-c-md-7-8 {
295 | margin: 5px;
296 | width: calc(87.5% - 10px); }
297 | .batch-c-md-7-12 {
298 | width: 58.33333%; }
299 | .batch-g--gutter > .batch-c-md-7-12 {
300 | margin: 5px;
301 | width: calc(58.33333% - 10px); }
302 | .batch-c-md-7-24 {
303 | width: 29.16667%; }
304 | .batch-g--gutter > .batch-c-md-7-24 {
305 | margin: 5px;
306 | width: calc(29.16667% - 10px); }
307 | .batch-c-md-11-12 {
308 | width: 91.66667%; }
309 | .batch-g--gutter > .batch-c-md-11-12 {
310 | margin: 5px;
311 | width: calc(91.66667% - 10px); }
312 | .batch-c-md-11-24 {
313 | width: 45.83333%; }
314 | .batch-g--gutter > .batch-c-md-11-24 {
315 | margin: 5px;
316 | width: calc(45.83333% - 10px); }
317 | .batch-c-md-13-24 {
318 | width: 54.16667%; }
319 | .batch-g--gutter > .batch-c-md-13-24 {
320 | margin: 5px;
321 | width: calc(54.16667% - 10px); }
322 | .batch-c-md-17-24 {
323 | width: 70.83333%; }
324 | .batch-g--gutter > .batch-c-md-17-24 {
325 | margin: 5px;
326 | width: calc(70.83333% - 10px); }
327 | .batch-c-md-19-24 {
328 | width: 79.16667%; }
329 | .batch-g--gutter > .batch-c-md-19-24 {
330 | margin: 5px;
331 | width: calc(79.16667% - 10px); }
332 | .batch-c-md-23-24 {
333 | width: 95.83333%; }
334 | .batch-g--gutter > .batch-c-md-23-24 {
335 | margin: 5px;
336 | width: calc(95.83333% - 10px); } }
337 |
338 | /* Large screen cells */
339 | @media screen and (min-width: 900px) {
340 | .batch-c-lg-1-1 {
341 | width: 100%; }
342 | .batch-g--gutter > .batch-c-lg-1-1 {
343 | margin: 5px;
344 | width: calc(100% - 10px); }
345 | .batch-c-lg-1-2 {
346 | width: 50%; }
347 | .batch-g--gutter > .batch-c-lg-1-2 {
348 | margin: 5px;
349 | width: calc(50% - 10px); }
350 | .batch-c-lg-1-3 {
351 | width: 33.33333%; }
352 | .batch-g--gutter > .batch-c-lg-1-3 {
353 | margin: 5px;
354 | width: calc(33.33333% - 10px); }
355 | .batch-c-lg-1-4 {
356 | width: 25%; }
357 | .batch-g--gutter > .batch-c-lg-1-4 {
358 | margin: 5px;
359 | width: calc(25% - 10px); }
360 | .batch-c-lg-1-6 {
361 | width: 16.66667%; }
362 | .batch-g--gutter > .batch-c-lg-1-6 {
363 | margin: 5px;
364 | width: calc(16.66667% - 10px); }
365 | .batch-c-lg-1-8 {
366 | width: 12.5%; }
367 | .batch-g--gutter > .batch-c-lg-1-8 {
368 | margin: 5px;
369 | width: calc(12.5% - 10px); }
370 | .batch-c-lg-1-12 {
371 | width: 8.33333%; }
372 | .batch-g--gutter > .batch-c-lg-1-12 {
373 | margin: 5px;
374 | width: calc(8.33333% - 10px); }
375 | .batch-c-lg-1-24 {
376 | width: 4.16667%; }
377 | .batch-g--gutter > .batch-c-lg-1-24 {
378 | margin: 5px;
379 | width: calc(4.16667% - 10px); }
380 | .batch-c-lg-2-3 {
381 | width: 66.66667%; }
382 | .batch-g--gutter > .batch-c-lg-2-3 {
383 | margin: 5px;
384 | width: calc(66.66667% - 10px); }
385 | .batch-c-lg-3-4 {
386 | width: 75%; }
387 | .batch-g--gutter > .batch-c-lg-3-4 {
388 | margin: 5px;
389 | width: calc(75% - 10px); }
390 | .batch-c-lg-3-8 {
391 | width: 37.5%; }
392 | .batch-g--gutter > .batch-c-lg-3-8 {
393 | margin: 5px;
394 | width: calc(37.5% - 10px); }
395 | .batch-c-lg-5-6 {
396 | width: 83.33333%; }
397 | .batch-g--gutter > .batch-c-lg-5-6 {
398 | margin: 5px;
399 | width: calc(83.33333% - 10px); }
400 | .batch-c-lg-5-8 {
401 | width: 62.5%; }
402 | .batch-g--gutter > .batch-c-lg-5-8 {
403 | margin: 5px;
404 | width: calc(62.5% - 10px); }
405 | .batch-c-lg-5-12 {
406 | width: 41.66667%; }
407 | .batch-g--gutter > .batch-c-lg-5-12 {
408 | margin: 5px;
409 | width: calc(41.66667% - 10px); }
410 | .batch-c-lg-5-24 {
411 | width: 20.83333%; }
412 | .batch-g--gutter > .batch-c-lg-5-24 {
413 | margin: 5px;
414 | width: calc(20.83333% - 10px); }
415 | .batch-c-lg-7-8 {
416 | width: 87.5%; }
417 | .batch-g--gutter > .batch-c-lg-7-8 {
418 | margin: 5px;
419 | width: calc(87.5% - 10px); }
420 | .batch-c-lg-7-12 {
421 | width: 58.33333%; }
422 | .batch-g--gutter > .batch-c-lg-7-12 {
423 | margin: 5px;
424 | width: calc(58.33333% - 10px); }
425 | .batch-c-lg-7-24 {
426 | width: 29.16667%; }
427 | .batch-g--gutter > .batch-c-lg-7-24 {
428 | margin: 5px;
429 | width: calc(29.16667% - 10px); }
430 | .batch-c-lg-11-12 {
431 | width: 91.66667%; }
432 | .batch-g--gutter > .batch-c-lg-11-12 {
433 | margin: 5px;
434 | width: calc(91.66667% - 10px); }
435 | .batch-c-lg-11-24 {
436 | width: 45.83333%; }
437 | .batch-g--gutter > .batch-c-lg-11-24 {
438 | margin: 5px;
439 | width: calc(45.83333% - 10px); }
440 | .batch-c-lg-13-24 {
441 | width: 54.16667%; }
442 | .batch-g--gutter > .batch-c-lg-13-24 {
443 | margin: 5px;
444 | width: calc(54.16667% - 10px); }
445 | .batch-c-lg-17-24 {
446 | width: 70.83333%; }
447 | .batch-g--gutter > .batch-c-lg-17-24 {
448 | margin: 5px;
449 | width: calc(70.83333% - 10px); }
450 | .batch-c-lg-19-24 {
451 | width: 79.16667%; }
452 | .batch-g--gutter > .batch-c-lg-19-24 {
453 | margin: 5px;
454 | width: calc(79.16667% - 10px); }
455 | .batch-c-lg-23-24 {
456 | width: 95.83333%; }
457 | .batch-g--gutter > .batch-c-lg-23-24 {
458 | margin: 5px;
459 | width: calc(95.83333% - 10px); } }
460 |
461 | /* Medium screen cell ordering */
462 | @media screen and (min-width: 600px) {
463 | .batch-c--order-md-1 {
464 | -ms-flex-order: 1;
465 | order: 1; }
466 | .batch-c--order-md-2 {
467 | -ms-flex-order: 2;
468 | order: 2; }
469 | .batch-c--order-md-3 {
470 | -ms-flex-order: 3;
471 | order: 3; }
472 | .batch-c--order-md-4 {
473 | -ms-flex-order: 4;
474 | order: 4; }
475 | .batch-c--order-md-5 {
476 | -ms-flex-order: 5;
477 | order: 5; }
478 | .batch-c--order-md-6 {
479 | -ms-flex-order: 6;
480 | order: 6; }
481 | .batch-c--order-md-7 {
482 | -ms-flex-order: 7;
483 | order: 7; }
484 | .batch-c--order-md-8 {
485 | -ms-flex-order: 8;
486 | order: 8; }
487 | .batch-c--order-md-9 {
488 | -ms-flex-order: 9;
489 | order: 9; }
490 | .batch-c--order-md-10 {
491 | -ms-flex-order: 10;
492 | order: 10; } }
493 |
494 | /* Large screen cell ordering */
495 | @media screen and (min-width: 900px) {
496 | .batch-c--order-lg-1 {
497 | -ms-flex-order: 1;
498 | order: 1; }
499 | .batch-c--order-lg-2 {
500 | -ms-flex-order: 2;
501 | order: 2; }
502 | .batch-c--order-lg-3 {
503 | -ms-flex-order: 3;
504 | order: 3; }
505 | .batch-c--order-lg-4 {
506 | -ms-flex-order: 4;
507 | order: 4; }
508 | .batch-c--order-lg-5 {
509 | -ms-flex-order: 5;
510 | order: 5; }
511 | .batch-c--order-lg-6 {
512 | -ms-flex-order: 6;
513 | order: 6; }
514 | .batch-c--order-lg-7 {
515 | -ms-flex-order: 7;
516 | order: 7; }
517 | .batch-c--order-lg-8 {
518 | -ms-flex-order: 8;
519 | order: 8; }
520 | .batch-c--order-lg-9 {
521 | -ms-flex-order: 9;
522 | order: 9; }
523 | .batch-c--order-lg-10 {
524 | -ms-flex-order: 10;
525 | order: 10; } }
526 |
527 | /* Batch cell modifiers */
528 | .batch-c--valign-self-top {
529 | -ms-flex-item-align: start;
530 | align-self: flex-start; }
531 |
532 | .batch-c--valign-self-bottom {
533 | -ms-flex-item-align: end;
534 | align-self: flex-end; }
535 |
536 | .batch-c--valign-self-center {
537 | -ms-flex-item-align: center;
538 | align-self: center; }
539 |
--------------------------------------------------------------------------------
/app/templates/css/batch.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | */
9 | /* Batch grid wrapper */
10 | .batch-g {
11 | -ms-flex-align: stretch;
12 | align-items: stretch;
13 | display: -ms-flexbox;
14 | display: flex;
15 | -ms-flex-direction: row;
16 | flex-direction: row;
17 | -ms-flex-wrap: wrap;
18 | flex-wrap: wrap;
19 | -ms-flex-pack: start;
20 | justify-content: flex-start; }
21 |
22 | /* Batch grid modifiers */
23 | .batch-g--border > [class^="batch-c"] {
24 | border: 1px solid #666666; }
25 |
26 | .batch-g--gutter {
27 | margin: 0 -5px; }
28 |
29 | .batch-g--padding > [class^="batch-c"] {
30 | padding: 5px; }
31 |
32 | .batch-g--padding-horizontal > [class^="batch-c"] {
33 | padding-left: 5px;
34 | padding-right: 5px; }
35 |
36 | .batch-g--padding-vertical > [class^="batch-c"] {
37 | padding-bottom: 5px;
38 | padding-top: 5px; }
39 |
40 | .batch-g--reverse {
41 | -ms-flex-direction: row-reverse;
42 | flex-direction: row-reverse; }
43 |
44 | .batch-g--valign-top {
45 | -ms-flex-align: start;
46 | align-items: flex-start; }
47 |
48 | .batch-g--valign-center {
49 | -ms-flex-align: center;
50 | align-items: center; }
51 |
52 | .batch-g--valign-bottom {
53 | -ms-flex-align: end;
54 | align-items: flex-end; }
55 |
56 | .batch-g--align-center {
57 | -ms-flex-pack: center;
58 | justify-content: center; }
59 |
60 | .batch-g--align-right {
61 | -ms-flex-pack: end;
62 | justify-content: flex-end; }
63 |
64 | /* Batch grid cells */
65 | [class^="batch-c"] {
66 | box-sizing: border-box;
67 | -ms-flex: 0 0 auto;
68 | flex: 0 0 auto; }
69 |
70 | /* Base cells */
71 | .batch-c-1-1 {
72 | width: 100%; }
73 | .batch-g--gutter > .batch-c-1-1 {
74 | margin: 5px;
75 | width: calc(100% - 10px); }
76 |
77 | .batch-c-1-2 {
78 | width: 50%; }
79 | .batch-g--gutter > .batch-c-1-2 {
80 | margin: 5px;
81 | width: calc(50% - 10px); }
82 |
83 | .batch-c-1-3 {
84 | width: 33.33333%; }
85 | .batch-g--gutter > .batch-c-1-3 {
86 | margin: 5px;
87 | width: calc(33.33333% - 10px); }
88 |
89 | .batch-c-1-4 {
90 | width: 25%; }
91 | .batch-g--gutter > .batch-c-1-4 {
92 | margin: 5px;
93 | width: calc(25% - 10px); }
94 |
95 | .batch-c-1-6 {
96 | width: 16.66667%; }
97 | .batch-g--gutter > .batch-c-1-6 {
98 | margin: 5px;
99 | width: calc(16.66667% - 10px); }
100 |
101 | .batch-c-1-8 {
102 | width: 12.5%; }
103 | .batch-g--gutter > .batch-c-1-8 {
104 | margin: 5px;
105 | width: calc(12.5% - 10px); }
106 |
107 | .batch-c-1-12 {
108 | width: 8.33333%; }
109 | .batch-g--gutter > .batch-c-1-12 {
110 | margin: 5px;
111 | width: calc(8.33333% - 10px); }
112 |
113 | .batch-c-1-24 {
114 | width: 4.16667%; }
115 | .batch-g--gutter > .batch-c-1-24 {
116 | margin: 5px;
117 | width: calc(4.16667% - 10px); }
118 |
119 | .batch-c-2-3 {
120 | width: 66.66667%; }
121 | .batch-g--gutter > .batch-c-2-3 {
122 | margin: 5px;
123 | width: calc(66.66667% - 10px); }
124 |
125 | .batch-c-3-4 {
126 | width: 75%; }
127 | .batch-g--gutter > .batch-c-3-4 {
128 | margin: 5px;
129 | width: calc(75% - 10px); }
130 |
131 | .batch-c-3-8 {
132 | width: 37.5%; }
133 | .batch-g--gutter > .batch-c-3-8 {
134 | margin: 5px;
135 | width: calc(37.5% - 10px); }
136 |
137 | .batch-c-5-6 {
138 | width: 83.33333%; }
139 | .batch-g--gutter > .batch-c-5-6 {
140 | margin: 5px;
141 | width: calc(83.33333% - 10px); }
142 |
143 | .batch-c-5-8 {
144 | width: 62.5%; }
145 | .batch-g--gutter > .batch-c-5-8 {
146 | margin: 5px;
147 | width: calc(62.5% - 10px); }
148 |
149 | .batch-c-5-12 {
150 | width: 41.66667%; }
151 | .batch-g--gutter > .batch-c-5-12 {
152 | margin: 5px;
153 | width: calc(41.66667% - 10px); }
154 |
155 | .batch-c-5-24 {
156 | width: 20.83333%; }
157 | .batch-g--gutter > .batch-c-5-24 {
158 | margin: 5px;
159 | width: calc(20.83333% - 10px); }
160 |
161 | .batch-c-7-8 {
162 | width: 87.5%; }
163 | .batch-g--gutter > .batch-c-7-8 {
164 | margin: 5px;
165 | width: calc(87.5% - 10px); }
166 |
167 | .batch-c-7-12 {
168 | width: 58.33333%; }
169 | .batch-g--gutter > .batch-c-7-12 {
170 | margin: 5px;
171 | width: calc(58.33333% - 10px); }
172 |
173 | .batch-c-7-24 {
174 | width: 29.16667%; }
175 | .batch-g--gutter > .batch-c-7-24 {
176 | margin: 5px;
177 | width: calc(29.16667% - 10px); }
178 |
179 | .batch-c-11-12 {
180 | width: 91.66667%; }
181 | .batch-g--gutter > .batch-c-11-12 {
182 | margin: 5px;
183 | width: calc(91.66667% - 10px); }
184 |
185 | .batch-c-11-24 {
186 | width: 45.83333%; }
187 | .batch-g--gutter > .batch-c-11-24 {
188 | margin: 5px;
189 | width: calc(45.83333% - 10px); }
190 |
191 | .batch-c-13-24 {
192 | width: 54.16667%; }
193 | .batch-g--gutter > .batch-c-13-24 {
194 | margin: 5px;
195 | width: calc(54.16667% - 10px); }
196 |
197 | .batch-c-17-24 {
198 | width: 70.83333%; }
199 | .batch-g--gutter > .batch-c-17-24 {
200 | margin: 5px;
201 | width: calc(70.83333% - 10px); }
202 |
203 | .batch-c-19-24 {
204 | width: 79.16667%; }
205 | .batch-g--gutter > .batch-c-19-24 {
206 | margin: 5px;
207 | width: calc(79.16667% - 10px); }
208 |
209 | .batch-c-23-24 {
210 | width: 95.83333%; }
211 | .batch-g--gutter > .batch-c-23-24 {
212 | margin: 5px;
213 | width: calc(95.83333% - 10px); }
214 |
215 | /* Medium screen cells */
216 | @media screen and (min-width: 600px) {
217 | .batch-c-md-1-1 {
218 | width: 100%; }
219 | .batch-g--gutter > .batch-c-md-1-1 {
220 | margin: 5px;
221 | width: calc(100% - 10px); }
222 | .batch-c-md-1-2 {
223 | width: 50%; }
224 | .batch-g--gutter > .batch-c-md-1-2 {
225 | margin: 5px;
226 | width: calc(50% - 10px); }
227 | .batch-c-md-1-3 {
228 | width: 33.33333%; }
229 | .batch-g--gutter > .batch-c-md-1-3 {
230 | margin: 5px;
231 | width: calc(33.33333% - 10px); }
232 | .batch-c-md-1-4 {
233 | width: 25%; }
234 | .batch-g--gutter > .batch-c-md-1-4 {
235 | margin: 5px;
236 | width: calc(25% - 10px); }
237 | .batch-c-md-1-6 {
238 | width: 16.66667%; }
239 | .batch-g--gutter > .batch-c-md-1-6 {
240 | margin: 5px;
241 | width: calc(16.66667% - 10px); }
242 | .batch-c-md-1-8 {
243 | width: 12.5%; }
244 | .batch-g--gutter > .batch-c-md-1-8 {
245 | margin: 5px;
246 | width: calc(12.5% - 10px); }
247 | .batch-c-md-1-12 {
248 | width: 8.33333%; }
249 | .batch-g--gutter > .batch-c-md-1-12 {
250 | margin: 5px;
251 | width: calc(8.33333% - 10px); }
252 | .batch-c-md-1-24 {
253 | width: 4.16667%; }
254 | .batch-g--gutter > .batch-c-md-1-24 {
255 | margin: 5px;
256 | width: calc(4.16667% - 10px); }
257 | .batch-c-md-2-3 {
258 | width: 66.66667%; }
259 | .batch-g--gutter > .batch-c-md-2-3 {
260 | margin: 5px;
261 | width: calc(66.66667% - 10px); }
262 | .batch-c-md-3-4 {
263 | width: 75%; }
264 | .batch-g--gutter > .batch-c-md-3-4 {
265 | margin: 5px;
266 | width: calc(75% - 10px); }
267 | .batch-c-md-3-8 {
268 | width: 37.5%; }
269 | .batch-g--gutter > .batch-c-md-3-8 {
270 | margin: 5px;
271 | width: calc(37.5% - 10px); }
272 | .batch-c-md-5-6 {
273 | width: 83.33333%; }
274 | .batch-g--gutter > .batch-c-md-5-6 {
275 | margin: 5px;
276 | width: calc(83.33333% - 10px); }
277 | .batch-c-md-5-8 {
278 | width: 62.5%; }
279 | .batch-g--gutter > .batch-c-md-5-8 {
280 | margin: 5px;
281 | width: calc(62.5% - 10px); }
282 | .batch-c-md-5-12 {
283 | width: 41.66667%; }
284 | .batch-g--gutter > .batch-c-md-5-12 {
285 | margin: 5px;
286 | width: calc(41.66667% - 10px); }
287 | .batch-c-md-5-24 {
288 | width: 20.83333%; }
289 | .batch-g--gutter > .batch-c-md-5-24 {
290 | margin: 5px;
291 | width: calc(20.83333% - 10px); }
292 | .batch-c-md-7-8 {
293 | width: 87.5%; }
294 | .batch-g--gutter > .batch-c-md-7-8 {
295 | margin: 5px;
296 | width: calc(87.5% - 10px); }
297 | .batch-c-md-7-12 {
298 | width: 58.33333%; }
299 | .batch-g--gutter > .batch-c-md-7-12 {
300 | margin: 5px;
301 | width: calc(58.33333% - 10px); }
302 | .batch-c-md-7-24 {
303 | width: 29.16667%; }
304 | .batch-g--gutter > .batch-c-md-7-24 {
305 | margin: 5px;
306 | width: calc(29.16667% - 10px); }
307 | .batch-c-md-11-12 {
308 | width: 91.66667%; }
309 | .batch-g--gutter > .batch-c-md-11-12 {
310 | margin: 5px;
311 | width: calc(91.66667% - 10px); }
312 | .batch-c-md-11-24 {
313 | width: 45.83333%; }
314 | .batch-g--gutter > .batch-c-md-11-24 {
315 | margin: 5px;
316 | width: calc(45.83333% - 10px); }
317 | .batch-c-md-13-24 {
318 | width: 54.16667%; }
319 | .batch-g--gutter > .batch-c-md-13-24 {
320 | margin: 5px;
321 | width: calc(54.16667% - 10px); }
322 | .batch-c-md-17-24 {
323 | width: 70.83333%; }
324 | .batch-g--gutter > .batch-c-md-17-24 {
325 | margin: 5px;
326 | width: calc(70.83333% - 10px); }
327 | .batch-c-md-19-24 {
328 | width: 79.16667%; }
329 | .batch-g--gutter > .batch-c-md-19-24 {
330 | margin: 5px;
331 | width: calc(79.16667% - 10px); }
332 | .batch-c-md-23-24 {
333 | width: 95.83333%; }
334 | .batch-g--gutter > .batch-c-md-23-24 {
335 | margin: 5px;
336 | width: calc(95.83333% - 10px); } }
337 |
338 | /* Large screen cells */
339 | @media screen and (min-width: 900px) {
340 | .batch-c-lg-1-1 {
341 | width: 100%; }
342 | .batch-g--gutter > .batch-c-lg-1-1 {
343 | margin: 5px;
344 | width: calc(100% - 10px); }
345 | .batch-c-lg-1-2 {
346 | width: 50%; }
347 | .batch-g--gutter > .batch-c-lg-1-2 {
348 | margin: 5px;
349 | width: calc(50% - 10px); }
350 | .batch-c-lg-1-3 {
351 | width: 33.33333%; }
352 | .batch-g--gutter > .batch-c-lg-1-3 {
353 | margin: 5px;
354 | width: calc(33.33333% - 10px); }
355 | .batch-c-lg-1-4 {
356 | width: 25%; }
357 | .batch-g--gutter > .batch-c-lg-1-4 {
358 | margin: 5px;
359 | width: calc(25% - 10px); }
360 | .batch-c-lg-1-6 {
361 | width: 16.66667%; }
362 | .batch-g--gutter > .batch-c-lg-1-6 {
363 | margin: 5px;
364 | width: calc(16.66667% - 10px); }
365 | .batch-c-lg-1-8 {
366 | width: 12.5%; }
367 | .batch-g--gutter > .batch-c-lg-1-8 {
368 | margin: 5px;
369 | width: calc(12.5% - 10px); }
370 | .batch-c-lg-1-12 {
371 | width: 8.33333%; }
372 | .batch-g--gutter > .batch-c-lg-1-12 {
373 | margin: 5px;
374 | width: calc(8.33333% - 10px); }
375 | .batch-c-lg-1-24 {
376 | width: 4.16667%; }
377 | .batch-g--gutter > .batch-c-lg-1-24 {
378 | margin: 5px;
379 | width: calc(4.16667% - 10px); }
380 | .batch-c-lg-2-3 {
381 | width: 66.66667%; }
382 | .batch-g--gutter > .batch-c-lg-2-3 {
383 | margin: 5px;
384 | width: calc(66.66667% - 10px); }
385 | .batch-c-lg-3-4 {
386 | width: 75%; }
387 | .batch-g--gutter > .batch-c-lg-3-4 {
388 | margin: 5px;
389 | width: calc(75% - 10px); }
390 | .batch-c-lg-3-8 {
391 | width: 37.5%; }
392 | .batch-g--gutter > .batch-c-lg-3-8 {
393 | margin: 5px;
394 | width: calc(37.5% - 10px); }
395 | .batch-c-lg-5-6 {
396 | width: 83.33333%; }
397 | .batch-g--gutter > .batch-c-lg-5-6 {
398 | margin: 5px;
399 | width: calc(83.33333% - 10px); }
400 | .batch-c-lg-5-8 {
401 | width: 62.5%; }
402 | .batch-g--gutter > .batch-c-lg-5-8 {
403 | margin: 5px;
404 | width: calc(62.5% - 10px); }
405 | .batch-c-lg-5-12 {
406 | width: 41.66667%; }
407 | .batch-g--gutter > .batch-c-lg-5-12 {
408 | margin: 5px;
409 | width: calc(41.66667% - 10px); }
410 | .batch-c-lg-5-24 {
411 | width: 20.83333%; }
412 | .batch-g--gutter > .batch-c-lg-5-24 {
413 | margin: 5px;
414 | width: calc(20.83333% - 10px); }
415 | .batch-c-lg-7-8 {
416 | width: 87.5%; }
417 | .batch-g--gutter > .batch-c-lg-7-8 {
418 | margin: 5px;
419 | width: calc(87.5% - 10px); }
420 | .batch-c-lg-7-12 {
421 | width: 58.33333%; }
422 | .batch-g--gutter > .batch-c-lg-7-12 {
423 | margin: 5px;
424 | width: calc(58.33333% - 10px); }
425 | .batch-c-lg-7-24 {
426 | width: 29.16667%; }
427 | .batch-g--gutter > .batch-c-lg-7-24 {
428 | margin: 5px;
429 | width: calc(29.16667% - 10px); }
430 | .batch-c-lg-11-12 {
431 | width: 91.66667%; }
432 | .batch-g--gutter > .batch-c-lg-11-12 {
433 | margin: 5px;
434 | width: calc(91.66667% - 10px); }
435 | .batch-c-lg-11-24 {
436 | width: 45.83333%; }
437 | .batch-g--gutter > .batch-c-lg-11-24 {
438 | margin: 5px;
439 | width: calc(45.83333% - 10px); }
440 | .batch-c-lg-13-24 {
441 | width: 54.16667%; }
442 | .batch-g--gutter > .batch-c-lg-13-24 {
443 | margin: 5px;
444 | width: calc(54.16667% - 10px); }
445 | .batch-c-lg-17-24 {
446 | width: 70.83333%; }
447 | .batch-g--gutter > .batch-c-lg-17-24 {
448 | margin: 5px;
449 | width: calc(70.83333% - 10px); }
450 | .batch-c-lg-19-24 {
451 | width: 79.16667%; }
452 | .batch-g--gutter > .batch-c-lg-19-24 {
453 | margin: 5px;
454 | width: calc(79.16667% - 10px); }
455 | .batch-c-lg-23-24 {
456 | width: 95.83333%; }
457 | .batch-g--gutter > .batch-c-lg-23-24 {
458 | margin: 5px;
459 | width: calc(95.83333% - 10px); } }
460 |
461 | /* Medium screen cell ordering */
462 | @media screen and (min-width: 600px) {
463 | .batch-c--order-md-1 {
464 | -ms-flex-order: 1;
465 | order: 1; }
466 | .batch-c--order-md-2 {
467 | -ms-flex-order: 2;
468 | order: 2; }
469 | .batch-c--order-md-3 {
470 | -ms-flex-order: 3;
471 | order: 3; }
472 | .batch-c--order-md-4 {
473 | -ms-flex-order: 4;
474 | order: 4; }
475 | .batch-c--order-md-5 {
476 | -ms-flex-order: 5;
477 | order: 5; }
478 | .batch-c--order-md-6 {
479 | -ms-flex-order: 6;
480 | order: 6; }
481 | .batch-c--order-md-7 {
482 | -ms-flex-order: 7;
483 | order: 7; }
484 | .batch-c--order-md-8 {
485 | -ms-flex-order: 8;
486 | order: 8; }
487 | .batch-c--order-md-9 {
488 | -ms-flex-order: 9;
489 | order: 9; }
490 | .batch-c--order-md-10 {
491 | -ms-flex-order: 10;
492 | order: 10; } }
493 |
494 | /* Large screen cell ordering */
495 | @media screen and (min-width: 900px) {
496 | .batch-c--order-lg-1 {
497 | -ms-flex-order: 1;
498 | order: 1; }
499 | .batch-c--order-lg-2 {
500 | -ms-flex-order: 2;
501 | order: 2; }
502 | .batch-c--order-lg-3 {
503 | -ms-flex-order: 3;
504 | order: 3; }
505 | .batch-c--order-lg-4 {
506 | -ms-flex-order: 4;
507 | order: 4; }
508 | .batch-c--order-lg-5 {
509 | -ms-flex-order: 5;
510 | order: 5; }
511 | .batch-c--order-lg-6 {
512 | -ms-flex-order: 6;
513 | order: 6; }
514 | .batch-c--order-lg-7 {
515 | -ms-flex-order: 7;
516 | order: 7; }
517 | .batch-c--order-lg-8 {
518 | -ms-flex-order: 8;
519 | order: 8; }
520 | .batch-c--order-lg-9 {
521 | -ms-flex-order: 9;
522 | order: 9; }
523 | .batch-c--order-lg-10 {
524 | -ms-flex-order: 10;
525 | order: 10; } }
526 |
527 | /* Batch cell modifiers */
528 | .batch-c--valign-self-top {
529 | -ms-flex-item-align: start;
530 | align-self: flex-start; }
531 |
532 | .batch-c--valign-self-bottom {
533 | -ms-flex-item-align: end;
534 | align-self: flex-end; }
535 |
536 | .batch-c--valign-self-center {
537 | -ms-flex-item-align: center;
538 | align-self: center; }
539 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 2, June 1991
3 |
4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6 | Everyone is permitted to copy and distribute verbatim copies
7 | of this license document, but changing it is not allowed.
8 |
9 | Preamble
10 |
11 | The licenses for most software are designed to take away your
12 | freedom to share and change it. By contrast, the GNU General Public
13 | License is intended to guarantee your freedom to share and change free
14 | software--to make sure the software is free for all its users. This
15 | General Public License applies to most of the Free Software
16 | Foundation's software and to any other program whose authors commit to
17 | using it. (Some other Free Software Foundation software is covered by
18 | the GNU Lesser General Public License instead.) You can apply it to
19 | your programs, too.
20 |
21 | When we speak of free software, we are referring to freedom, not
22 | price. Our General Public Licenses are designed to make sure that you
23 | have the freedom to distribute copies of free software (and charge for
24 | this service if you wish), that you receive source code or can get it
25 | if you want it, that you can change the software or use pieces of it
26 | in new free programs; and that you know you can do these things.
27 |
28 | To protect your rights, we need to make restrictions that forbid
29 | anyone to deny you these rights or to ask you to surrender the rights.
30 | These restrictions translate to certain responsibilities for you if you
31 | distribute copies of the software, or if you modify it.
32 |
33 | For example, if you distribute copies of such a program, whether
34 | gratis or for a fee, you must give the recipients all the rights that
35 | you have. You must make sure that they, too, receive or can get the
36 | source code. And you must show them these terms so they know their
37 | rights.
38 |
39 | We protect your rights with two steps: (1) copyright the software, and
40 | (2) offer you this license which gives you legal permission to copy,
41 | distribute and/or modify the software.
42 |
43 | Also, for each author's protection and ours, we want to make certain
44 | that everyone understands that there is no warranty for this free
45 | software. If the software is modified by someone else and passed on, we
46 | want its recipients to know that what they have is not the original, so
47 | that any problems introduced by others will not reflect on the original
48 | authors' reputations.
49 |
50 | Finally, any free program is threatened constantly by software
51 | patents. We wish to avoid the danger that redistributors of a free
52 | program will individually obtain patent licenses, in effect making the
53 | program proprietary. To prevent this, we have made it clear that any
54 | patent must be licensed for everyone's free use or not licensed at all.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | GNU GENERAL PUBLIC LICENSE
60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61 |
62 | 0. This License applies to any program or other work which contains
63 | a notice placed by the copyright holder saying it may be distributed
64 | under the terms of this General Public License. The "Program", below,
65 | refers to any such program or work, and a "work based on the Program"
66 | means either the Program or any derivative work under copyright law:
67 | that is to say, a work containing the Program or a portion of it,
68 | either verbatim or with modifications and/or translated into another
69 | language. (Hereinafter, translation is included without limitation in
70 | the term "modification".) Each licensee is addressed as "you".
71 |
72 | Activities other than copying, distribution and modification are not
73 | covered by this License; they are outside its scope. The act of
74 | running the Program is not restricted, and the output from the Program
75 | is covered only if its contents constitute a work based on the
76 | Program (independent of having been made by running the Program).
77 | Whether that is true depends on what the Program does.
78 |
79 | 1. You may copy and distribute verbatim copies of the Program's
80 | source code as you receive it, in any medium, provided that you
81 | conspicuously and appropriately publish on each copy an appropriate
82 | copyright notice and disclaimer of warranty; keep intact all the
83 | notices that refer to this License and to the absence of any warranty;
84 | and give any other recipients of the Program a copy of this License
85 | along with the Program.
86 |
87 | You may charge a fee for the physical act of transferring a copy, and
88 | you may at your option offer warranty protection in exchange for a fee.
89 |
90 | 2. You may modify your copy or copies of the Program or any portion
91 | of it, thus forming a work based on the Program, and copy and
92 | distribute such modifications or work under the terms of Section 1
93 | above, provided that you also meet all of these conditions:
94 |
95 | a) You must cause the modified files to carry prominent notices
96 | stating that you changed the files and the date of any change.
97 |
98 | b) You must cause any work that you distribute or publish, that in
99 | whole or in part contains or is derived from the Program or any
100 | part thereof, to be licensed as a whole at no charge to all third
101 | parties under the terms of this License.
102 |
103 | c) If the modified program normally reads commands interactively
104 | when run, you must cause it, when started running for such
105 | interactive use in the most ordinary way, to print or display an
106 | announcement including an appropriate copyright notice and a
107 | notice that there is no warranty (or else, saying that you provide
108 | a warranty) and that users may redistribute the program under
109 | these conditions, and telling the user how to view a copy of this
110 | License. (Exception: if the Program itself is interactive but
111 | does not normally print such an announcement, your work based on
112 | the Program is not required to print an announcement.)
113 |
114 | These requirements apply to the modified work as a whole. If
115 | identifiable sections of that work are not derived from the Program,
116 | and can be reasonably considered independent and separate works in
117 | themselves, then this License, and its terms, do not apply to those
118 | sections when you distribute them as separate works. But when you
119 | distribute the same sections as part of a whole which is a work based
120 | on the Program, the distribution of the whole must be on the terms of
121 | this License, whose permissions for other licensees extend to the
122 | entire whole, and thus to each and every part regardless of who wrote it.
123 |
124 | Thus, it is not the intent of this section to claim rights or contest
125 | your rights to work written entirely by you; rather, the intent is to
126 | exercise the right to control the distribution of derivative or
127 | collective works based on the Program.
128 |
129 | In addition, mere aggregation of another work not based on the Program
130 | with the Program (or with a work based on the Program) on a volume of
131 | a storage or distribution medium does not bring the other work under
132 | the scope of this License.
133 |
134 | 3. You may copy and distribute the Program (or a work based on it,
135 | under Section 2) in object code or executable form under the terms of
136 | Sections 1 and 2 above provided that you also do one of the following:
137 |
138 | a) Accompany it with the complete corresponding machine-readable
139 | source code, which must be distributed under the terms of Sections
140 | 1 and 2 above on a medium customarily used for software interchange; or,
141 |
142 | b) Accompany it with a written offer, valid for at least three
143 | years, to give any third party, for a charge no more than your
144 | cost of physically performing source distribution, a complete
145 | machine-readable copy of the corresponding source code, to be
146 | distributed under the terms of Sections 1 and 2 above on a medium
147 | customarily used for software interchange; or,
148 |
149 | c) Accompany it with the information you received as to the offer
150 | to distribute corresponding source code. (This alternative is
151 | allowed only for noncommercial distribution and only if you
152 | received the program in object code or executable form with such
153 | an offer, in accord with Subsection b above.)
154 |
155 | The source code for a work means the preferred form of the work for
156 | making modifications to it. For an executable work, complete source
157 | code means all the source code for all modules it contains, plus any
158 | associated interface definition files, plus the scripts used to
159 | control compilation and installation of the executable. However, as a
160 | special exception, the source code distributed need not include
161 | anything that is normally distributed (in either source or binary
162 | form) with the major components (compiler, kernel, and so on) of the
163 | operating system on which the executable runs, unless that component
164 | itself accompanies the executable.
165 |
166 | If distribution of executable or object code is made by offering
167 | access to copy from a designated place, then offering equivalent
168 | access to copy the source code from the same place counts as
169 | distribution of the source code, even though third parties are not
170 | compelled to copy the source along with the object code.
171 |
172 | 4. You may not copy, modify, sublicense, or distribute the Program
173 | except as expressly provided under this License. Any attempt
174 | otherwise to copy, modify, sublicense or distribute the Program is
175 | void, and will automatically terminate your rights under this License.
176 | However, parties who have received copies, or rights, from you under
177 | this License will not have their licenses terminated so long as such
178 | parties remain in full compliance.
179 |
180 | 5. You are not required to accept this License, since you have not
181 | signed it. However, nothing else grants you permission to modify or
182 | distribute the Program or its derivative works. These actions are
183 | prohibited by law if you do not accept this License. Therefore, by
184 | modifying or distributing the Program (or any work based on the
185 | Program), you indicate your acceptance of this License to do so, and
186 | all its terms and conditions for copying, distributing or modifying
187 | the Program or works based on it.
188 |
189 | 6. Each time you redistribute the Program (or any work based on the
190 | Program), the recipient automatically receives a license from the
191 | original licensor to copy, distribute or modify the Program subject to
192 | these terms and conditions. You may not impose any further
193 | restrictions on the recipients' exercise of the rights granted herein.
194 | You are not responsible for enforcing compliance by third parties to
195 | this License.
196 |
197 | 7. If, as a consequence of a court judgment or allegation of patent
198 | infringement or for any other reason (not limited to patent issues),
199 | conditions are imposed on you (whether by court order, agreement or
200 | otherwise) that contradict the conditions of this License, they do not
201 | excuse you from the conditions of this License. If you cannot
202 | distribute so as to satisfy simultaneously your obligations under this
203 | License and any other pertinent obligations, then as a consequence you
204 | may not distribute the Program at all. For example, if a patent
205 | license would not permit royalty-free redistribution of the Program by
206 | all those who receive copies directly or indirectly through you, then
207 | the only way you could satisfy both it and this License would be to
208 | refrain entirely from distribution of the Program.
209 |
210 | If any portion of this section is held invalid or unenforceable under
211 | any particular circumstance, the balance of the section is intended to
212 | apply and the section as a whole is intended to apply in other
213 | circumstances.
214 |
215 | It is not the purpose of this section to induce you to infringe any
216 | patents or other property right claims or to contest validity of any
217 | such claims; this section has the sole purpose of protecting the
218 | integrity of the free software distribution system, which is
219 | implemented by public license practices. Many people have made
220 | generous contributions to the wide range of software distributed
221 | through that system in reliance on consistent application of that
222 | system; it is up to the author/donor to decide if he or she is willing
223 | to distribute software through any other system and a licensee cannot
224 | impose that choice.
225 |
226 | This section is intended to make thoroughly clear what is believed to
227 | be a consequence of the rest of this License.
228 |
229 | 8. If the distribution and/or use of the Program is restricted in
230 | certain countries either by patents or by copyrighted interfaces, the
231 | original copyright holder who places the Program under this License
232 | may add an explicit geographical distribution limitation excluding
233 | those countries, so that distribution is permitted only in or among
234 | countries not thus excluded. In such case, this License incorporates
235 | the limitation as if written in the body of this License.
236 |
237 | 9. The Free Software Foundation may publish revised and/or new versions
238 | of the General Public License from time to time. Such new versions will
239 | be similar in spirit to the present version, but may differ in detail to
240 | address new problems or concerns.
241 |
242 | Each version is given a distinguishing version number. If the Program
243 | specifies a version number of this License which applies to it and "any
244 | later version", you have the option of following the terms and conditions
245 | either of that version or of any later version published by the Free
246 | Software Foundation. If the Program does not specify a version number of
247 | this License, you may choose any version ever published by the Free Software
248 | Foundation.
249 |
250 | 10. If you wish to incorporate parts of the Program into other free
251 | programs whose distribution conditions are different, write to the author
252 | to ask for permission. For software which is copyrighted by the Free
253 | Software Foundation, write to the Free Software Foundation; we sometimes
254 | make exceptions for this. Our decision will be guided by the two goals
255 | of preserving the free status of all derivatives of our free software and
256 | of promoting the sharing and reuse of software generally.
257 |
258 | NO WARRANTY
259 |
260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268 | REPAIR OR CORRECTION.
269 |
270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278 | POSSIBILITY OF SUCH DAMAGES.
279 |
280 | END OF TERMS AND CONDITIONS
281 |
282 | How to Apply These Terms to Your New Programs
283 |
284 | If you develop a new program, and you want it to be of the greatest
285 | possible use to the public, the best way to achieve this is to make it
286 | free software which everyone can redistribute and change under these terms.
287 |
288 | To do so, attach the following notices to the program. It is safest
289 | to attach them to the start of each source file to most effectively
290 | convey the exclusion of warranty; and each file should have at least
291 | the "copyright" line and a pointer to where the full notice is found.
292 |
293 | {description}
294 | Copyright (C) {year} {fullname}
295 |
296 | This program is free software; you can redistribute it and/or modify
297 | it under the terms of the GNU General Public License as published by
298 | the Free Software Foundation; either version 2 of the License, or
299 | (at your option) any later version.
300 |
301 | This program is distributed in the hope that it will be useful,
302 | but WITHOUT ANY WARRANTY; without even the implied warranty of
303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304 | GNU General Public License for more details.
305 |
306 | You should have received a copy of the GNU General Public License along
307 | with this program; if not, write to the Free Software Foundation, Inc.,
308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309 |
310 | Also add information on how to contact you by electronic and paper mail.
311 |
312 | If the program is interactive, make it output a short notice like this
313 | when it starts in an interactive mode:
314 |
315 | Gnomovision version 69, Copyright (C) year name of author
316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317 | This is free software, and you are welcome to redistribute it
318 | under certain conditions; type `show c' for details.
319 |
320 | The hypothetical commands `show w' and `show c' should show the appropriate
321 | parts of the General Public License. Of course, the commands you use may
322 | be called something other than `show w' and `show c'; they could even be
323 | mouse-clicks or menu items--whatever suits your program.
324 |
325 | You should also get your employer (if you work as a programmer) or your
326 | school, if any, to sign a "copyright disclaimer" for the program, if
327 | necessary. Here is a sample; alter the names:
328 |
329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330 | `Gnomovision' (which makes passes at compilers) written by James Hacker.
331 |
332 | {signature of Ty Coon}, 1 April 1989
333 | Ty Coon, President of Vice
334 |
335 | This General Public License does not permit incorporating your program into
336 | proprietary programs. If your program is a subroutine library, you may
337 | consider it more useful to permit linking proprietary applications with the
338 | library. If this is what you want to do, use the GNU Lesser General
339 | Public License instead of this License.
340 |
341 |
--------------------------------------------------------------------------------
/app/assets/css/docs.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | */
9 | /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
10 | /**
11 | * 1. Change the default font family in all browsers (opinionated).
12 | * 2. Correct the line height in all browsers.
13 | * 3. Prevent adjustments of font size after orientation changes in
14 | * IE on Windows Phone and in iOS.
15 | */
16 | /* Document
17 | ========================================================================== */
18 | html {
19 | font-family: sans-serif;
20 | /* 1 */
21 | line-height: 1.15;
22 | /* 2 */
23 | -ms-text-size-adjust: 100%;
24 | /* 3 */
25 | -webkit-text-size-adjust: 100%;
26 | /* 3 */ }
27 |
28 | /* Sections
29 | ========================================================================== */
30 | /**
31 | * Remove the margin in all browsers (opinionated).
32 | */
33 | body {
34 | margin: 0; }
35 |
36 | /**
37 | * Add the correct display in IE 9-.
38 | */
39 | article,
40 | aside,
41 | footer,
42 | header,
43 | nav,
44 | section {
45 | display: block; }
46 |
47 | /**
48 | * Correct the font size and margin on `h1` elements within `section` and
49 | * `article` contexts in Chrome, Firefox, and Safari.
50 | */
51 | h1 {
52 | font-size: 2em;
53 | margin: 0.67em 0; }
54 |
55 | /* Grouping content
56 | ========================================================================== */
57 | /**
58 | * Add the correct display in IE 9-.
59 | * 1. Add the correct display in IE.
60 | */
61 | figcaption,
62 | figure,
63 | main {
64 | /* 1 */
65 | display: block; }
66 |
67 | /**
68 | * Add the correct margin in IE 8.
69 | */
70 | figure {
71 | margin: 1em 40px; }
72 |
73 | /**
74 | * 1. Add the correct box sizing in Firefox.
75 | * 2. Show the overflow in Edge and IE.
76 | */
77 | hr {
78 | box-sizing: content-box;
79 | /* 1 */
80 | height: 0;
81 | /* 1 */
82 | overflow: visible;
83 | /* 2 */ }
84 |
85 | /**
86 | * 1. Correct the inheritance and scaling of font size in all browsers.
87 | * 2. Correct the odd `em` font sizing in all browsers.
88 | */
89 | pre {
90 | font-family: monospace, monospace;
91 | /* 1 */
92 | font-size: 1em;
93 | /* 2 */ }
94 |
95 | /* Text-level semantics
96 | ========================================================================== */
97 | /**
98 | * 1. Remove the gray background on active links in IE 10.
99 | * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
100 | */
101 | a {
102 | background-color: transparent;
103 | /* 1 */
104 | -webkit-text-decoration-skip: objects;
105 | /* 2 */ }
106 |
107 | /**
108 | * Remove the outline on focused links when they are also active or hovered
109 | * in all browsers (opinionated).
110 | */
111 | a:active,
112 | a:hover {
113 | outline-width: 0; }
114 |
115 | /**
116 | * 1. Remove the bottom border in Firefox 39-.
117 | * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
118 | */
119 | abbr[title] {
120 | border-bottom: none;
121 | /* 1 */
122 | text-decoration: underline;
123 | /* 2 */
124 | text-decoration: underline dotted;
125 | /* 2 */ }
126 |
127 | /**
128 | * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
129 | */
130 | b,
131 | strong {
132 | font-weight: inherit; }
133 |
134 | /**
135 | * Add the correct font weight in Chrome, Edge, and Safari.
136 | */
137 | b,
138 | strong {
139 | font-weight: bolder; }
140 |
141 | /**
142 | * 1. Correct the inheritance and scaling of font size in all browsers.
143 | * 2. Correct the odd `em` font sizing in all browsers.
144 | */
145 | code,
146 | kbd,
147 | samp {
148 | font-family: monospace, monospace;
149 | /* 1 */
150 | font-size: 1em;
151 | /* 2 */ }
152 |
153 | /**
154 | * Add the correct font style in Android 4.3-.
155 | */
156 | dfn {
157 | font-style: italic; }
158 |
159 | /**
160 | * Add the correct background and color in IE 9-.
161 | */
162 | mark {
163 | background-color: #ff0;
164 | color: #000; }
165 |
166 | /**
167 | * Add the correct font size in all browsers.
168 | */
169 | small {
170 | font-size: 80%; }
171 |
172 | /**
173 | * Prevent `sub` and `sup` elements from affecting the line height in
174 | * all browsers.
175 | */
176 | sub,
177 | sup {
178 | font-size: 75%;
179 | line-height: 0;
180 | position: relative;
181 | vertical-align: baseline; }
182 |
183 | sub {
184 | bottom: -0.25em; }
185 |
186 | sup {
187 | top: -0.5em; }
188 |
189 | /* Embedded content
190 | ========================================================================== */
191 | /**
192 | * Add the correct display in IE 9-.
193 | */
194 | audio,
195 | video {
196 | display: inline-block; }
197 |
198 | /**
199 | * Add the correct display in iOS 4-7.
200 | */
201 | audio:not([controls]) {
202 | display: none;
203 | height: 0; }
204 |
205 | /**
206 | * Remove the border on images inside links in IE 10-.
207 | */
208 | img {
209 | border-style: none; }
210 |
211 | /**
212 | * Hide the overflow in IE.
213 | */
214 | svg:not(:root) {
215 | overflow: hidden; }
216 |
217 | /* Forms
218 | ========================================================================== */
219 | /**
220 | * 1. Change the font styles in all browsers (opinionated).
221 | * 2. Remove the margin in Firefox and Safari.
222 | */
223 | button,
224 | input,
225 | optgroup,
226 | select,
227 | textarea {
228 | font-family: sans-serif;
229 | /* 1 */
230 | font-size: 100%;
231 | /* 1 */
232 | line-height: 1.15;
233 | /* 1 */
234 | margin: 0;
235 | /* 2 */ }
236 |
237 | /**
238 | * Show the overflow in IE.
239 | * 1. Show the overflow in Edge.
240 | */
241 | button,
242 | input {
243 | /* 1 */
244 | overflow: visible; }
245 |
246 | /**
247 | * Remove the inheritance of text transform in Edge, Firefox, and IE.
248 | * 1. Remove the inheritance of text transform in Firefox.
249 | */
250 | button,
251 | select {
252 | /* 1 */
253 | text-transform: none; }
254 |
255 | /**
256 | * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
257 | * controls in Android 4.
258 | * 2. Correct the inability to style clickable types in iOS and Safari.
259 | */
260 | button,
261 | html [type="button"],
262 | [type="reset"],
263 | [type="submit"] {
264 | -webkit-appearance: button;
265 | /* 2 */ }
266 |
267 | /**
268 | * Remove the inner border and padding in Firefox.
269 | */
270 | button::-moz-focus-inner,
271 | [type="button"]::-moz-focus-inner,
272 | [type="reset"]::-moz-focus-inner,
273 | [type="submit"]::-moz-focus-inner {
274 | border-style: none;
275 | padding: 0; }
276 |
277 | /**
278 | * Restore the focus styles unset by the previous rule.
279 | */
280 | button:-moz-focusring,
281 | [type="button"]:-moz-focusring,
282 | [type="reset"]:-moz-focusring,
283 | [type="submit"]:-moz-focusring {
284 | outline: 1px dotted ButtonText; }
285 |
286 | /**
287 | * Change the border, margin, and padding in all browsers (opinionated).
288 | */
289 | fieldset {
290 | border: 1px solid #c0c0c0;
291 | margin: 0 2px;
292 | padding: 0.35em 0.625em 0.75em; }
293 |
294 | /**
295 | * 1. Correct the text wrapping in Edge and IE.
296 | * 2. Correct the color inheritance from `fieldset` elements in IE.
297 | * 3. Remove the padding so developers are not caught out when they zero out
298 | * `fieldset` elements in all browsers.
299 | */
300 | legend {
301 | box-sizing: border-box;
302 | /* 1 */
303 | color: inherit;
304 | /* 2 */
305 | display: table;
306 | /* 1 */
307 | max-width: 100%;
308 | /* 1 */
309 | padding: 0;
310 | /* 3 */
311 | white-space: normal;
312 | /* 1 */ }
313 |
314 | /**
315 | * 1. Add the correct display in IE 9-.
316 | * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
317 | */
318 | progress {
319 | display: inline-block;
320 | /* 1 */
321 | vertical-align: baseline;
322 | /* 2 */ }
323 |
324 | /**
325 | * Remove the default vertical scrollbar in IE.
326 | */
327 | textarea {
328 | overflow: auto; }
329 |
330 | /**
331 | * 1. Add the correct box sizing in IE 10-.
332 | * 2. Remove the padding in IE 10-.
333 | */
334 | [type="checkbox"],
335 | [type="radio"] {
336 | box-sizing: border-box;
337 | /* 1 */
338 | padding: 0;
339 | /* 2 */ }
340 |
341 | /**
342 | * Correct the cursor style of increment and decrement buttons in Chrome.
343 | */
344 | [type="number"]::-webkit-inner-spin-button,
345 | [type="number"]::-webkit-outer-spin-button {
346 | height: auto; }
347 |
348 | /**
349 | * 1. Correct the odd appearance in Chrome and Safari.
350 | * 2. Correct the outline style in Safari.
351 | */
352 | [type="search"] {
353 | -webkit-appearance: textfield;
354 | /* 1 */
355 | outline-offset: -2px;
356 | /* 2 */ }
357 |
358 | /**
359 | * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
360 | */
361 | [type="search"]::-webkit-search-cancel-button,
362 | [type="search"]::-webkit-search-decoration {
363 | -webkit-appearance: none; }
364 |
365 | /**
366 | * 1. Correct the inability to style clickable types in iOS and Safari.
367 | * 2. Change font properties to `inherit` in Safari.
368 | */
369 | ::-webkit-file-upload-button {
370 | -webkit-appearance: button;
371 | /* 1 */
372 | font: inherit;
373 | /* 2 */ }
374 |
375 | /* Interactive
376 | ========================================================================== */
377 | /*
378 | * Add the correct display in IE 9-.
379 | * 1. Add the correct display in Edge, IE, and Firefox.
380 | */
381 | details,
382 | menu {
383 | display: block; }
384 |
385 | /*
386 | * Add the correct display in all browsers.
387 | */
388 | summary {
389 | display: list-item; }
390 |
391 | /* Scripting
392 | ========================================================================== */
393 | /**
394 | * Add the correct display in IE 9-.
395 | */
396 | canvas {
397 | display: inline-block; }
398 |
399 | /**
400 | * Add the correct display in IE.
401 | */
402 | template {
403 | display: none; }
404 |
405 | /* Hidden
406 | ========================================================================== */
407 | /**
408 | * Add the correct display in IE 10-.
409 | */
410 | [hidden] {
411 | display: none; }
412 |
413 | fieldset {
414 | background-color: #f7f7f7;
415 | border: 1px solid #dddddd;
416 | margin: 0 0 0.75em;
417 | padding: 1.5em; }
418 |
419 | input,
420 | label,
421 | select {
422 | display: block;
423 | font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
424 | font-size: 1em; }
425 |
426 | label {
427 | font-weight: 600;
428 | margin-bottom: 0.375em; }
429 | label.required::after {
430 | content: "*"; }
431 | label abbr {
432 | display: none; }
433 |
434 | input[type="color"],
435 | input[type="date"],
436 | input[type="datetime"],
437 | input[type="datetime-local"],
438 | input[type="email"],
439 | input[type="month"],
440 | input[type="number"],
441 | input[type="password"],
442 | input[type="search"],
443 | input[type="tel"],
444 | input[type="text"],
445 | input[type="time"],
446 | input[type="url"],
447 | input[type="week"],
448 | input:not([type]),
449 | textarea,
450 | select[multiple=multiple] {
451 | background-color: #ffffff;
452 | border: 1px solid #dddddd;
453 | border-radius: 3px;
454 | box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
455 | box-sizing: border-box;
456 | font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
457 | font-size: 1em;
458 | margin-bottom: 0.75em;
459 | padding: 0.5em;
460 | transition: border-color;
461 | width: 100%; }
462 | input[type="color"]:hover,
463 | input[type="date"]:hover,
464 | input[type="datetime"]:hover,
465 | input[type="datetime-local"]:hover,
466 | input[type="email"]:hover,
467 | input[type="month"]:hover,
468 | input[type="number"]:hover,
469 | input[type="password"]:hover,
470 | input[type="search"]:hover,
471 | input[type="tel"]:hover,
472 | input[type="text"]:hover,
473 | input[type="time"]:hover,
474 | input[type="url"]:hover,
475 | input[type="week"]:hover,
476 | input:not([type]):hover,
477 | textarea:hover,
478 | select[multiple=multiple]:hover {
479 | border-color: #c4c4c4; }
480 | input[type="color"]:focus,
481 | input[type="date"]:focus,
482 | input[type="datetime"]:focus,
483 | input[type="datetime-local"]:focus,
484 | input[type="email"]:focus,
485 | input[type="month"]:focus,
486 | input[type="number"]:focus,
487 | input[type="password"]:focus,
488 | input[type="search"]:focus,
489 | input[type="tel"]:focus,
490 | input[type="text"]:focus,
491 | input[type="time"]:focus,
492 | input[type="url"]:focus,
493 | input[type="week"]:focus,
494 | input:not([type]):focus,
495 | textarea:focus,
496 | select[multiple=multiple]:focus {
497 | border-color: #8EA604;
498 | box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(121, 141, 3, 0.7);
499 | outline: none; }
500 |
501 | textarea {
502 | resize: vertical; }
503 |
504 | input[type="search"] {
505 | appearance: none; }
506 |
507 | input[type="checkbox"],
508 | input[type="radio"] {
509 | display: inline;
510 | margin-right: 0.375em; }
511 |
512 | input[type="file"] {
513 | padding-bottom: 0.75em;
514 | width: 100%; }
515 |
516 | select {
517 | margin-bottom: 1.5em;
518 | max-width: 100%;
519 | width: auto; }
520 |
521 | ul,
522 | ol {
523 | list-style-type: none;
524 | margin: 0;
525 | padding: 0; }
526 |
527 | dl {
528 | margin-bottom: 0.75em; }
529 | dl dt {
530 | font-weight: bold;
531 | margin-top: 0.75em; }
532 | dl dd {
533 | margin: 0; }
534 |
535 | table {
536 | border-collapse: collapse;
537 | margin: 0.75em 0;
538 | table-layout: fixed;
539 | width: 100%; }
540 |
541 | th {
542 | border-bottom: 1px solid #b7b7b7;
543 | font-weight: 600;
544 | padding: 0.75em 0;
545 | text-align: left; }
546 |
547 | td {
548 | border-bottom: 1px solid #dddddd;
549 | padding: 0.75em 0; }
550 |
551 | tr,
552 | td,
553 | th {
554 | vertical-align: middle; }
555 |
556 | body {
557 | -webkit-font-smoothing: antialiased;
558 | color: #333333;
559 | font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
560 | font-size: 1em;
561 | line-height: 1.5; }
562 |
563 | h1 {
564 | font-size: 2.25em;
565 | font-family: "Raleway", sans-serif;
566 | font-weight: 500;
567 | line-height: 1.2;
568 | margin: 0 0 0.75em; }
569 |
570 | h2 {
571 | font-size: 2em;
572 | font-family: "Raleway", sans-serif;
573 | font-weight: 500;
574 | line-height: 1.2;
575 | margin: 0 0 0.75em; }
576 |
577 | h3 {
578 | font-size: 1.75em;
579 | font-family: "Raleway", sans-serif;
580 | font-weight: 500;
581 | line-height: 1.2;
582 | margin: 0 0 0.75em; }
583 |
584 | h4 {
585 | font-size: 1.25em;
586 | font-family: "Raleway", sans-serif;
587 | font-weight: 500;
588 | line-height: 1.2;
589 | margin: 0 0 0.75em; }
590 |
591 | h5,
592 | h6 {
593 | font-size: 1.15em;
594 | font-family: "Raleway", sans-serif;
595 | font-weight: 500;
596 | line-height: 1.2;
597 | margin: 0 0 0.75em; }
598 |
599 | p {
600 | margin: 0 0 0.75em; }
601 |
602 | a {
603 | color: #8EA604;
604 | text-decoration: none;
605 | transition: color 0.1s linear; }
606 | a:active, a:focus, a:hover {
607 | color: #4e5b02; }
608 | a:active, a:focus {
609 | outline: none; }
610 |
611 | hr {
612 | border-bottom: 1px solid #dddddd;
613 | border-left: none;
614 | border-right: none;
615 | border-top: none;
616 | margin: 1.5em 0; }
617 |
618 | img,
619 | picture {
620 | margin: 0;
621 | max-width: 100%; }
622 |
623 | ::-moz-selection {
624 | background: #f1fdac; }
625 |
626 | ::selection {
627 | background: #f1fdac; }
628 |
629 | .btn,
630 | button {
631 | -webkit-font-smoothing: antialiased;
632 | appearance: none;
633 | background-color: #8EA604;
634 | border-radius: 3px;
635 | border: none;
636 | color: #ffffff;
637 | cursor: pointer;
638 | display: inline-block;
639 | font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
640 | font-size: 1em;
641 | font-weight: 400;
642 | line-height: 1;
643 | margin-right: 0.75em;
644 | padding: 0.75em 1em;
645 | text-align: center;
646 | text-decoration: none;
647 | -webkit-user-select: none;
648 | -moz-user-select: none;
649 | -ms-user-select: none;
650 | user-select: none;
651 | vertical-align: middle;
652 | white-space: nowrap; }
653 | @media screen and (min-width: 600px) {
654 | .btn,
655 | button {
656 | margin-right: 1.5em; } }
657 | .btn:hover, .btn:focus,
658 | button:hover,
659 | button:focus {
660 | background-color: #4e5b02;
661 | color: #ffffff; }
662 | .btn:disabled,
663 | button:disabled {
664 | cursor: not-allowed;
665 | opacity: 0.5; }
666 | .btn + .btn:last-of-type,
667 | button + .btn:last-of-type, .btn +
668 | button:last-of-type,
669 | button +
670 | button:last-of-type {
671 | margin-right: 0; }
672 | .btn.btn--secondary,
673 | button.btn--secondary {
674 | background-color: #ffffff;
675 | border: 1px solid #8EA604;
676 | color: #8EA604; }
677 | .btn.btn--secondary:hover, .btn.btn--secondary:focus,
678 | button.btn--secondary:hover,
679 | button.btn--secondary:focus {
680 | background-color: #f9f9f9; }
681 |
682 | .btn--small {
683 | font-size: 0.8em;
684 | margin-right: 0.75em;
685 | padding: 0.75em 0.9em; }
686 | .btn--small + .btn--small:last-of-type {
687 | margin-right: 0; }
688 |
689 | .btn_notes {
690 | display: block;
691 | font-size: 0.7em;
692 | font-style: italic; }
693 | @media screen and (min-width: 600px) {
694 | .btn_notes {
695 | display: inline; } }
696 |
697 | .link--light {
698 | color: #ffffff; }
699 | .link--light:hover, .link--light:focus {
700 | color: #EC5B05; }
701 |
702 | .link--underlined {
703 | border-bottom-color: #8EA604;
704 | border-bottom-style: solid;
705 | border-bottom-width: 2px; }
706 | .link--underlined.link--light {
707 | border-bottom-color: rgba(255, 255, 255, 0.25); }
708 | .link--underlined.link--light:hover {
709 | border-bottom-color: rgba(236, 91, 5, 0.25); }
710 |
711 | .l-row {
712 | overflow: hidden;
713 | padding: 1.5em 0.75em; }
714 | @media screen and (min-width: 600px) {
715 | .l-row {
716 | padding: 3em 0.75em; } }
717 |
718 | .l-row--border-top {
719 | border-top: 1px solid #BF3100; }
720 |
721 | .l-row--amber {
722 | background-color: #BF3100;
723 | color: #ffffff; }
724 |
725 | .l-row--green {
726 | background-color: #8EA604;
727 | color: #ffffff; }
728 |
729 | .l-row--gold {
730 | background-color: #EC5B05;
731 | color: #ffffff; }
732 |
733 | .l-row--gray {
734 | background-color: #dddddd; }
735 |
736 | .l-row--gray--light {
737 | background-color: #f9f9f9; }
738 |
739 | .l-container {
740 | margin-left: auto;
741 | margin-right: auto;
742 | max-width: 1080px; }
743 |
744 | .l-section {
745 | margin-bottom: 3em; }
746 | .l-section:last-of-type {
747 | margin-bottom: 0; }
748 |
749 | @media screen and (min-width: 900px) {
750 | .batch-logo {
751 | margin-bottom: 0; } }
752 |
753 | .batch-logo_image {
754 | max-width: 280px; }
755 |
756 | .utilities {
757 | text-align: center; }
758 | @media screen and (min-width: 900px) {
759 | .utilities {
760 | text-align: right; } }
761 |
762 | .utilities_item {
763 | padding-bottom: 1.5em; }
764 |
765 | .hero {
766 | padding-bottom: 2.25em;
767 | padding-top: 2.25em; }
768 | @media screen and (min-width: 600px) {
769 | .hero {
770 | padding-bottom: 3em;
771 | padding-top: 3em; } }
772 |
773 | .hero-headline {
774 | font-size: 2.5em;
775 | text-align: center;
776 | text-shadow: 0px 2px 0px rgba(51, 51, 51, 0.2); }
777 |
778 | .hero-warehouse {
779 | margin: 0 auto;
780 | line-height: 0; }
781 | @media screen and (min-width: 600px) {
782 | .hero-warehouse {
783 | width: 90%; } }
784 | @media screen and (min-width: 900px) {
785 | .hero-warehouse {
786 | width: 70%; } }
787 |
788 | .bi-barrel {
789 | position: relative;
790 | top: -1000px;
791 | transition: top 0.2s linear; }
792 | .bi-barrel.is-dropped {
793 | top: 0px; }
794 |
795 | .rotate-flip {
796 | -webkit-transform: rotate(90deg) scaleX(-1);
797 | transform: rotate(90deg) scaleX(-1); }
798 |
799 | .feature-object {
800 | padding: 0 1.5em;
801 | text-align: center; }
802 |
803 | .feature-object_icon {
804 | color: #EC5B05;
805 | font-size: 4em; }
806 | @media screen and (min-width: 900px) {
807 | .feature-object_icon {
808 | font-size: 7em; } }
809 |
810 | .comment {
811 | font-family: Consolas, monaco, monospace;
812 | opacity: 0.5; }
813 |
814 | pre {
815 | background: #f9f9f9;
816 | border-radius: 4px;
817 | color: #333333;
818 | font-family: Consolas, monaco, monospace;
819 | font-size: 0.8em;
820 | line-height: 1.25em;
821 | overflow: auto;
822 | padding: 5px;
823 | white-space: pre-line; }
824 |
825 | .pre-block {
826 | white-space: pre; }
827 |
828 | code {
829 | font-family: Consolas, monaco, monospace;
830 | font-size: 0.8em;
831 | line-height: 1.25em; }
832 | code .code-o {
833 | color: #EC5B05; }
834 | code .code-c {
835 | color: #8EA604; }
836 | code .code-n {
837 | color: #BF3100; }
838 |
839 | .batch-g--docs {
840 | background: #fff6f1;
841 | margin: 0 -5px; }
842 | .batch-g--docs [class^="batch-c"] {
843 | background: #ffffff; }
844 |
845 | .batch-g--border-lg {
846 | background: #EC5B05; }
847 | .batch-g--border-lg [class^="batch-c"] {
848 | border-color: #EC5B05; }
849 |
850 | .batch-g--filled {
851 | background: #f9f9f9; }
852 | .batch-g--filled [class^="batch-c"] {
853 | background: #dddddd;
854 | font-size: 0.8em; }
855 |
856 | .batch-g--dl {
857 | font-size: 0.8em;
858 | margin: 0 0 2.25em; }
859 | .batch-g--dl > [class^="batch-c"]:nth-child(odd) {
860 | text-align: right; }
861 |
862 | .batch-g--templates {
863 | margin-bottom: 0.75em; }
864 | .batch-g--templates header {
865 | background: #EC5B05;
866 | color: #ffffff;
867 | text-align: center; }
868 | @media screen and (min-width: 600px) {
869 | .batch-g--templates header {
870 | height: 65px; } }
871 | .batch-g--templates aside {
872 | background: #BF3100;
873 | color: #ffffff;
874 | text-align: center; }
875 | @media screen and (min-width: 600px) {
876 | .batch-g--templates aside {
877 | height: 200px; } }
878 | .batch-g--templates aside:nth-of-type(2) {
879 | opacity: 0.7; }
880 | .batch-g--templates main {
881 | background: #8EA604;
882 | color: #ffffff;
883 | text-align: center; }
884 | @media screen and (min-width: 600px) {
885 | .batch-g--templates main {
886 | height: 200px; } }
887 | .batch-g--templates footer {
888 | background: #333333;
889 | color: #ffffff;
890 | text-align: center; }
891 | @media screen and (min-width: 600px) {
892 | .batch-g--templates footer {
893 | height: 65px; } }
894 |
895 | .highlight {
896 | color: #333333;
897 | margin-bottom: 10px;
898 | text-align: left; }
899 |
900 | .strong {
901 | font-weight: bold; }
902 |
903 | .small-text {
904 | font-size: 0.75em;
905 | line-height: 1.25em; }
906 |
907 | .highlight-sm .strong {
908 | font-weight: bold; }
909 |
910 | @media screen and (min-width: 600px) {
911 | .highlight-sm {
912 | opacity: 0.4; }
913 | .highlight-sm .strong {
914 | font-weight: normal; } }
915 |
916 | .highlight-md {
917 | opacity: 0.4; }
918 | .highlight-md .strong {
919 | font-weight: normal; }
920 | @media screen and (min-width: 600px) {
921 | .highlight-md {
922 | opacity: 1; }
923 | .highlight-md .strong {
924 | font-weight: bold; } }
925 | @media screen and (min-width: 900px) {
926 | .highlight-md {
927 | opacity: 0.4; }
928 | .highlight-md .strong {
929 | font-weight: normal; } }
930 |
931 | .highlight-lg {
932 | opacity: 0.4; }
933 | .highlight-lg .strong {
934 | font-weight: normal; }
935 | @media screen and (min-width: 900px) {
936 | .highlight-lg {
937 | opacity: 1; }
938 | .highlight-lg .strong {
939 | font-weight: bold; } }
940 |
941 | @media screen and (min-width: 600px) {
942 | .show-sm {
943 | display: none; } }
944 |
945 | @media screen and (max-width: 600px) {
946 | .hide-sm {
947 | display: none; } }
948 |
949 | @media screen and (max-width: 600px) {
950 | .show-md {
951 | display: none; } }
952 |
953 | @media screen and (min-width: 900px) {
954 | .show-md {
955 | display: none; } }
956 |
957 | @media (min-width: 600px) and (max-width: 900px) {
958 | .hide-md {
959 | display: none; } }
960 |
961 | @media screen and (max-width: 600px) {
962 | .show-lg {
963 | display: none; } }
964 |
965 | @media (min-width: 600px) and (max-width: 900px) {
966 | .show-lg {
967 | display: none; } }
968 |
969 | @media screen and (min-width: 900px) {
970 | .hide-lg {
971 | display: none; } }
972 |
973 | .footer {
974 | padding-bottom: 4.5em;
975 | padding-top: 4.5em;
976 | font-size: 0.8em; }
977 |
--------------------------------------------------------------------------------
/app/templates/css/docs.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Batch
3 | * A simple, responsive, flexbox grid system.
4 | * https://github.com/Martskin/batch
5 | * @author Martin Hofmann
6 | * @version 2.0.0
7 | * Copyright 2016. GPL-2.0 licensed.
8 | */
9 | /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
10 | /**
11 | * 1. Change the default font family in all browsers (opinionated).
12 | * 2. Correct the line height in all browsers.
13 | * 3. Prevent adjustments of font size after orientation changes in
14 | * IE on Windows Phone and in iOS.
15 | */
16 | /* Document
17 | ========================================================================== */
18 | html {
19 | font-family: sans-serif;
20 | /* 1 */
21 | line-height: 1.15;
22 | /* 2 */
23 | -ms-text-size-adjust: 100%;
24 | /* 3 */
25 | -webkit-text-size-adjust: 100%;
26 | /* 3 */ }
27 |
28 | /* Sections
29 | ========================================================================== */
30 | /**
31 | * Remove the margin in all browsers (opinionated).
32 | */
33 | body {
34 | margin: 0; }
35 |
36 | /**
37 | * Add the correct display in IE 9-.
38 | */
39 | article,
40 | aside,
41 | footer,
42 | header,
43 | nav,
44 | section {
45 | display: block; }
46 |
47 | /**
48 | * Correct the font size and margin on `h1` elements within `section` and
49 | * `article` contexts in Chrome, Firefox, and Safari.
50 | */
51 | h1 {
52 | font-size: 2em;
53 | margin: 0.67em 0; }
54 |
55 | /* Grouping content
56 | ========================================================================== */
57 | /**
58 | * Add the correct display in IE 9-.
59 | * 1. Add the correct display in IE.
60 | */
61 | figcaption,
62 | figure,
63 | main {
64 | /* 1 */
65 | display: block; }
66 |
67 | /**
68 | * Add the correct margin in IE 8.
69 | */
70 | figure {
71 | margin: 1em 40px; }
72 |
73 | /**
74 | * 1. Add the correct box sizing in Firefox.
75 | * 2. Show the overflow in Edge and IE.
76 | */
77 | hr {
78 | box-sizing: content-box;
79 | /* 1 */
80 | height: 0;
81 | /* 1 */
82 | overflow: visible;
83 | /* 2 */ }
84 |
85 | /**
86 | * 1. Correct the inheritance and scaling of font size in all browsers.
87 | * 2. Correct the odd `em` font sizing in all browsers.
88 | */
89 | pre {
90 | font-family: monospace, monospace;
91 | /* 1 */
92 | font-size: 1em;
93 | /* 2 */ }
94 |
95 | /* Text-level semantics
96 | ========================================================================== */
97 | /**
98 | * 1. Remove the gray background on active links in IE 10.
99 | * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
100 | */
101 | a {
102 | background-color: transparent;
103 | /* 1 */
104 | -webkit-text-decoration-skip: objects;
105 | /* 2 */ }
106 |
107 | /**
108 | * Remove the outline on focused links when they are also active or hovered
109 | * in all browsers (opinionated).
110 | */
111 | a:active,
112 | a:hover {
113 | outline-width: 0; }
114 |
115 | /**
116 | * 1. Remove the bottom border in Firefox 39-.
117 | * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
118 | */
119 | abbr[title] {
120 | border-bottom: none;
121 | /* 1 */
122 | text-decoration: underline;
123 | /* 2 */
124 | text-decoration: underline dotted;
125 | /* 2 */ }
126 |
127 | /**
128 | * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
129 | */
130 | b,
131 | strong {
132 | font-weight: inherit; }
133 |
134 | /**
135 | * Add the correct font weight in Chrome, Edge, and Safari.
136 | */
137 | b,
138 | strong {
139 | font-weight: bolder; }
140 |
141 | /**
142 | * 1. Correct the inheritance and scaling of font size in all browsers.
143 | * 2. Correct the odd `em` font sizing in all browsers.
144 | */
145 | code,
146 | kbd,
147 | samp {
148 | font-family: monospace, monospace;
149 | /* 1 */
150 | font-size: 1em;
151 | /* 2 */ }
152 |
153 | /**
154 | * Add the correct font style in Android 4.3-.
155 | */
156 | dfn {
157 | font-style: italic; }
158 |
159 | /**
160 | * Add the correct background and color in IE 9-.
161 | */
162 | mark {
163 | background-color: #ff0;
164 | color: #000; }
165 |
166 | /**
167 | * Add the correct font size in all browsers.
168 | */
169 | small {
170 | font-size: 80%; }
171 |
172 | /**
173 | * Prevent `sub` and `sup` elements from affecting the line height in
174 | * all browsers.
175 | */
176 | sub,
177 | sup {
178 | font-size: 75%;
179 | line-height: 0;
180 | position: relative;
181 | vertical-align: baseline; }
182 |
183 | sub {
184 | bottom: -0.25em; }
185 |
186 | sup {
187 | top: -0.5em; }
188 |
189 | /* Embedded content
190 | ========================================================================== */
191 | /**
192 | * Add the correct display in IE 9-.
193 | */
194 | audio,
195 | video {
196 | display: inline-block; }
197 |
198 | /**
199 | * Add the correct display in iOS 4-7.
200 | */
201 | audio:not([controls]) {
202 | display: none;
203 | height: 0; }
204 |
205 | /**
206 | * Remove the border on images inside links in IE 10-.
207 | */
208 | img {
209 | border-style: none; }
210 |
211 | /**
212 | * Hide the overflow in IE.
213 | */
214 | svg:not(:root) {
215 | overflow: hidden; }
216 |
217 | /* Forms
218 | ========================================================================== */
219 | /**
220 | * 1. Change the font styles in all browsers (opinionated).
221 | * 2. Remove the margin in Firefox and Safari.
222 | */
223 | button,
224 | input,
225 | optgroup,
226 | select,
227 | textarea {
228 | font-family: sans-serif;
229 | /* 1 */
230 | font-size: 100%;
231 | /* 1 */
232 | line-height: 1.15;
233 | /* 1 */
234 | margin: 0;
235 | /* 2 */ }
236 |
237 | /**
238 | * Show the overflow in IE.
239 | * 1. Show the overflow in Edge.
240 | */
241 | button,
242 | input {
243 | /* 1 */
244 | overflow: visible; }
245 |
246 | /**
247 | * Remove the inheritance of text transform in Edge, Firefox, and IE.
248 | * 1. Remove the inheritance of text transform in Firefox.
249 | */
250 | button,
251 | select {
252 | /* 1 */
253 | text-transform: none; }
254 |
255 | /**
256 | * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
257 | * controls in Android 4.
258 | * 2. Correct the inability to style clickable types in iOS and Safari.
259 | */
260 | button,
261 | html [type="button"],
262 | [type="reset"],
263 | [type="submit"] {
264 | -webkit-appearance: button;
265 | /* 2 */ }
266 |
267 | /**
268 | * Remove the inner border and padding in Firefox.
269 | */
270 | button::-moz-focus-inner,
271 | [type="button"]::-moz-focus-inner,
272 | [type="reset"]::-moz-focus-inner,
273 | [type="submit"]::-moz-focus-inner {
274 | border-style: none;
275 | padding: 0; }
276 |
277 | /**
278 | * Restore the focus styles unset by the previous rule.
279 | */
280 | button:-moz-focusring,
281 | [type="button"]:-moz-focusring,
282 | [type="reset"]:-moz-focusring,
283 | [type="submit"]:-moz-focusring {
284 | outline: 1px dotted ButtonText; }
285 |
286 | /**
287 | * Change the border, margin, and padding in all browsers (opinionated).
288 | */
289 | fieldset {
290 | border: 1px solid #c0c0c0;
291 | margin: 0 2px;
292 | padding: 0.35em 0.625em 0.75em; }
293 |
294 | /**
295 | * 1. Correct the text wrapping in Edge and IE.
296 | * 2. Correct the color inheritance from `fieldset` elements in IE.
297 | * 3. Remove the padding so developers are not caught out when they zero out
298 | * `fieldset` elements in all browsers.
299 | */
300 | legend {
301 | box-sizing: border-box;
302 | /* 1 */
303 | color: inherit;
304 | /* 2 */
305 | display: table;
306 | /* 1 */
307 | max-width: 100%;
308 | /* 1 */
309 | padding: 0;
310 | /* 3 */
311 | white-space: normal;
312 | /* 1 */ }
313 |
314 | /**
315 | * 1. Add the correct display in IE 9-.
316 | * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
317 | */
318 | progress {
319 | display: inline-block;
320 | /* 1 */
321 | vertical-align: baseline;
322 | /* 2 */ }
323 |
324 | /**
325 | * Remove the default vertical scrollbar in IE.
326 | */
327 | textarea {
328 | overflow: auto; }
329 |
330 | /**
331 | * 1. Add the correct box sizing in IE 10-.
332 | * 2. Remove the padding in IE 10-.
333 | */
334 | [type="checkbox"],
335 | [type="radio"] {
336 | box-sizing: border-box;
337 | /* 1 */
338 | padding: 0;
339 | /* 2 */ }
340 |
341 | /**
342 | * Correct the cursor style of increment and decrement buttons in Chrome.
343 | */
344 | [type="number"]::-webkit-inner-spin-button,
345 | [type="number"]::-webkit-outer-spin-button {
346 | height: auto; }
347 |
348 | /**
349 | * 1. Correct the odd appearance in Chrome and Safari.
350 | * 2. Correct the outline style in Safari.
351 | */
352 | [type="search"] {
353 | -webkit-appearance: textfield;
354 | /* 1 */
355 | outline-offset: -2px;
356 | /* 2 */ }
357 |
358 | /**
359 | * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
360 | */
361 | [type="search"]::-webkit-search-cancel-button,
362 | [type="search"]::-webkit-search-decoration {
363 | -webkit-appearance: none; }
364 |
365 | /**
366 | * 1. Correct the inability to style clickable types in iOS and Safari.
367 | * 2. Change font properties to `inherit` in Safari.
368 | */
369 | ::-webkit-file-upload-button {
370 | -webkit-appearance: button;
371 | /* 1 */
372 | font: inherit;
373 | /* 2 */ }
374 |
375 | /* Interactive
376 | ========================================================================== */
377 | /*
378 | * Add the correct display in IE 9-.
379 | * 1. Add the correct display in Edge, IE, and Firefox.
380 | */
381 | details,
382 | menu {
383 | display: block; }
384 |
385 | /*
386 | * Add the correct display in all browsers.
387 | */
388 | summary {
389 | display: list-item; }
390 |
391 | /* Scripting
392 | ========================================================================== */
393 | /**
394 | * Add the correct display in IE 9-.
395 | */
396 | canvas {
397 | display: inline-block; }
398 |
399 | /**
400 | * Add the correct display in IE.
401 | */
402 | template {
403 | display: none; }
404 |
405 | /* Hidden
406 | ========================================================================== */
407 | /**
408 | * Add the correct display in IE 10-.
409 | */
410 | [hidden] {
411 | display: none; }
412 |
413 | fieldset {
414 | background-color: #f7f7f7;
415 | border: 1px solid #dddddd;
416 | margin: 0 0 0.75em;
417 | padding: 1.5em; }
418 |
419 | input,
420 | label,
421 | select {
422 | display: block;
423 | font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
424 | font-size: 1em; }
425 |
426 | label {
427 | font-weight: 600;
428 | margin-bottom: 0.375em; }
429 | label.required::after {
430 | content: "*"; }
431 | label abbr {
432 | display: none; }
433 |
434 | input[type="color"],
435 | input[type="date"],
436 | input[type="datetime"],
437 | input[type="datetime-local"],
438 | input[type="email"],
439 | input[type="month"],
440 | input[type="number"],
441 | input[type="password"],
442 | input[type="search"],
443 | input[type="tel"],
444 | input[type="text"],
445 | input[type="time"],
446 | input[type="url"],
447 | input[type="week"],
448 | input:not([type]),
449 | textarea,
450 | select[multiple=multiple] {
451 | background-color: #ffffff;
452 | border: 1px solid #dddddd;
453 | border-radius: 3px;
454 | box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
455 | box-sizing: border-box;
456 | font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
457 | font-size: 1em;
458 | margin-bottom: 0.75em;
459 | padding: 0.5em;
460 | transition: border-color;
461 | width: 100%; }
462 | input[type="color"]:hover,
463 | input[type="date"]:hover,
464 | input[type="datetime"]:hover,
465 | input[type="datetime-local"]:hover,
466 | input[type="email"]:hover,
467 | input[type="month"]:hover,
468 | input[type="number"]:hover,
469 | input[type="password"]:hover,
470 | input[type="search"]:hover,
471 | input[type="tel"]:hover,
472 | input[type="text"]:hover,
473 | input[type="time"]:hover,
474 | input[type="url"]:hover,
475 | input[type="week"]:hover,
476 | input:not([type]):hover,
477 | textarea:hover,
478 | select[multiple=multiple]:hover {
479 | border-color: #c4c4c4; }
480 | input[type="color"]:focus,
481 | input[type="date"]:focus,
482 | input[type="datetime"]:focus,
483 | input[type="datetime-local"]:focus,
484 | input[type="email"]:focus,
485 | input[type="month"]:focus,
486 | input[type="number"]:focus,
487 | input[type="password"]:focus,
488 | input[type="search"]:focus,
489 | input[type="tel"]:focus,
490 | input[type="text"]:focus,
491 | input[type="time"]:focus,
492 | input[type="url"]:focus,
493 | input[type="week"]:focus,
494 | input:not([type]):focus,
495 | textarea:focus,
496 | select[multiple=multiple]:focus {
497 | border-color: #8EA604;
498 | box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(121, 141, 3, 0.7);
499 | outline: none; }
500 |
501 | textarea {
502 | resize: vertical; }
503 |
504 | input[type="search"] {
505 | appearance: none; }
506 |
507 | input[type="checkbox"],
508 | input[type="radio"] {
509 | display: inline;
510 | margin-right: 0.375em; }
511 |
512 | input[type="file"] {
513 | padding-bottom: 0.75em;
514 | width: 100%; }
515 |
516 | select {
517 | margin-bottom: 1.5em;
518 | max-width: 100%;
519 | width: auto; }
520 |
521 | ul,
522 | ol {
523 | list-style-type: none;
524 | margin: 0;
525 | padding: 0; }
526 |
527 | dl {
528 | margin-bottom: 0.75em; }
529 | dl dt {
530 | font-weight: bold;
531 | margin-top: 0.75em; }
532 | dl dd {
533 | margin: 0; }
534 |
535 | table {
536 | border-collapse: collapse;
537 | margin: 0.75em 0;
538 | table-layout: fixed;
539 | width: 100%; }
540 |
541 | th {
542 | border-bottom: 1px solid #b7b7b7;
543 | font-weight: 600;
544 | padding: 0.75em 0;
545 | text-align: left; }
546 |
547 | td {
548 | border-bottom: 1px solid #dddddd;
549 | padding: 0.75em 0; }
550 |
551 | tr,
552 | td,
553 | th {
554 | vertical-align: middle; }
555 |
556 | body {
557 | -webkit-font-smoothing: antialiased;
558 | color: #333333;
559 | font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
560 | font-size: 1em;
561 | line-height: 1.5; }
562 |
563 | h1 {
564 | font-size: 2.25em;
565 | font-family: "Raleway", sans-serif;
566 | font-weight: 500;
567 | line-height: 1.2;
568 | margin: 0 0 0.75em; }
569 |
570 | h2 {
571 | font-size: 2em;
572 | font-family: "Raleway", sans-serif;
573 | font-weight: 500;
574 | line-height: 1.2;
575 | margin: 0 0 0.75em; }
576 |
577 | h3 {
578 | font-size: 1.75em;
579 | font-family: "Raleway", sans-serif;
580 | font-weight: 500;
581 | line-height: 1.2;
582 | margin: 0 0 0.75em; }
583 |
584 | h4 {
585 | font-size: 1.25em;
586 | font-family: "Raleway", sans-serif;
587 | font-weight: 500;
588 | line-height: 1.2;
589 | margin: 0 0 0.75em; }
590 |
591 | h5,
592 | h6 {
593 | font-size: 1.15em;
594 | font-family: "Raleway", sans-serif;
595 | font-weight: 500;
596 | line-height: 1.2;
597 | margin: 0 0 0.75em; }
598 |
599 | p {
600 | margin: 0 0 0.75em; }
601 |
602 | a {
603 | color: #8EA604;
604 | text-decoration: none;
605 | transition: color 0.1s linear; }
606 | a:active, a:focus, a:hover {
607 | color: #4e5b02; }
608 | a:active, a:focus {
609 | outline: none; }
610 |
611 | hr {
612 | border-bottom: 1px solid #dddddd;
613 | border-left: none;
614 | border-right: none;
615 | border-top: none;
616 | margin: 1.5em 0; }
617 |
618 | img,
619 | picture {
620 | margin: 0;
621 | max-width: 100%; }
622 |
623 | ::-moz-selection {
624 | background: #f1fdac; }
625 |
626 | ::selection {
627 | background: #f1fdac; }
628 |
629 | .btn,
630 | button {
631 | -webkit-font-smoothing: antialiased;
632 | appearance: none;
633 | background-color: #8EA604;
634 | border-radius: 3px;
635 | border: none;
636 | color: #ffffff;
637 | cursor: pointer;
638 | display: inline-block;
639 | font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
640 | font-size: 1em;
641 | font-weight: 400;
642 | line-height: 1;
643 | margin-right: 0.75em;
644 | padding: 0.75em 1em;
645 | text-align: center;
646 | text-decoration: none;
647 | -webkit-user-select: none;
648 | -moz-user-select: none;
649 | -ms-user-select: none;
650 | user-select: none;
651 | vertical-align: middle;
652 | white-space: nowrap; }
653 | @media screen and (min-width: 600px) {
654 | .btn,
655 | button {
656 | margin-right: 1.5em; } }
657 | .btn:hover, .btn:focus,
658 | button:hover,
659 | button:focus {
660 | background-color: #4e5b02;
661 | color: #ffffff; }
662 | .btn:disabled,
663 | button:disabled {
664 | cursor: not-allowed;
665 | opacity: 0.5; }
666 | .btn + .btn:last-of-type,
667 | button + .btn:last-of-type, .btn +
668 | button:last-of-type,
669 | button +
670 | button:last-of-type {
671 | margin-right: 0; }
672 | .btn.btn--secondary,
673 | button.btn--secondary {
674 | background-color: #ffffff;
675 | border: 1px solid #8EA604;
676 | color: #8EA604; }
677 | .btn.btn--secondary:hover, .btn.btn--secondary:focus,
678 | button.btn--secondary:hover,
679 | button.btn--secondary:focus {
680 | background-color: #f9f9f9; }
681 |
682 | .btn--small {
683 | font-size: 0.8em;
684 | margin-right: 0.75em;
685 | padding: 0.75em 0.9em; }
686 | .btn--small + .btn--small:last-of-type {
687 | margin-right: 0; }
688 |
689 | .btn_notes {
690 | display: block;
691 | font-size: 0.7em;
692 | font-style: italic; }
693 | @media screen and (min-width: 600px) {
694 | .btn_notes {
695 | display: inline; } }
696 |
697 | .link--light {
698 | color: #ffffff; }
699 | .link--light:hover, .link--light:focus {
700 | color: #EC5B05; }
701 |
702 | .link--underlined {
703 | border-bottom-color: #8EA604;
704 | border-bottom-style: solid;
705 | border-bottom-width: 2px; }
706 | .link--underlined.link--light {
707 | border-bottom-color: rgba(255, 255, 255, 0.25); }
708 | .link--underlined.link--light:hover {
709 | border-bottom-color: rgba(236, 91, 5, 0.25); }
710 |
711 | .l-row {
712 | overflow: hidden;
713 | padding: 1.5em 0.75em; }
714 | @media screen and (min-width: 600px) {
715 | .l-row {
716 | padding: 3em 0.75em; } }
717 |
718 | .l-row--border-top {
719 | border-top: 1px solid #BF3100; }
720 |
721 | .l-row--amber {
722 | background-color: #BF3100;
723 | color: #ffffff; }
724 |
725 | .l-row--green {
726 | background-color: #8EA604;
727 | color: #ffffff; }
728 |
729 | .l-row--gold {
730 | background-color: #EC5B05;
731 | color: #ffffff; }
732 |
733 | .l-row--gray {
734 | background-color: #dddddd; }
735 |
736 | .l-row--gray--light {
737 | background-color: #f9f9f9; }
738 |
739 | .l-container {
740 | margin-left: auto;
741 | margin-right: auto;
742 | max-width: 1080px; }
743 |
744 | .l-section {
745 | margin-bottom: 3em; }
746 | .l-section:last-of-type {
747 | margin-bottom: 0; }
748 |
749 | @media screen and (min-width: 900px) {
750 | .batch-logo {
751 | margin-bottom: 0; } }
752 |
753 | .batch-logo_image {
754 | max-width: 280px; }
755 |
756 | .utilities {
757 | text-align: center; }
758 | @media screen and (min-width: 900px) {
759 | .utilities {
760 | text-align: right; } }
761 |
762 | .utilities_item {
763 | padding-bottom: 1.5em; }
764 |
765 | .hero {
766 | padding-bottom: 2.25em;
767 | padding-top: 2.25em; }
768 | @media screen and (min-width: 600px) {
769 | .hero {
770 | padding-bottom: 3em;
771 | padding-top: 3em; } }
772 |
773 | .hero-headline {
774 | font-size: 2.5em;
775 | text-align: center;
776 | text-shadow: 0px 2px 0px rgba(51, 51, 51, 0.2); }
777 |
778 | .hero-warehouse {
779 | margin: 0 auto;
780 | line-height: 0; }
781 | @media screen and (min-width: 600px) {
782 | .hero-warehouse {
783 | width: 90%; } }
784 | @media screen and (min-width: 900px) {
785 | .hero-warehouse {
786 | width: 70%; } }
787 |
788 | .bi-barrel {
789 | position: relative;
790 | top: -1000px;
791 | transition: top 0.2s linear; }
792 | .bi-barrel.is-dropped {
793 | top: 0px; }
794 |
795 | .rotate-flip {
796 | -webkit-transform: rotate(90deg) scaleX(-1);
797 | transform: rotate(90deg) scaleX(-1); }
798 |
799 | .feature-object {
800 | padding: 0 1.5em;
801 | text-align: center; }
802 |
803 | .feature-object_icon {
804 | color: #EC5B05;
805 | font-size: 4em; }
806 | @media screen and (min-width: 900px) {
807 | .feature-object_icon {
808 | font-size: 7em; } }
809 |
810 | .comment {
811 | font-family: Consolas, monaco, monospace;
812 | opacity: 0.5; }
813 |
814 | pre {
815 | background: #f9f9f9;
816 | border-radius: 4px;
817 | color: #333333;
818 | font-family: Consolas, monaco, monospace;
819 | font-size: 0.8em;
820 | line-height: 1.25em;
821 | overflow: auto;
822 | padding: 5px;
823 | white-space: pre-line; }
824 |
825 | .pre-block {
826 | white-space: pre; }
827 |
828 | code {
829 | font-family: Consolas, monaco, monospace;
830 | font-size: 0.8em;
831 | line-height: 1.25em; }
832 | code .code-o {
833 | color: #EC5B05; }
834 | code .code-c {
835 | color: #8EA604; }
836 | code .code-n {
837 | color: #BF3100; }
838 |
839 | .batch-g--docs {
840 | background: #fff6f1;
841 | margin: 0 -5px; }
842 | .batch-g--docs [class^="batch-c"] {
843 | background: #ffffff; }
844 |
845 | .batch-g--border-lg {
846 | background: #EC5B05; }
847 | .batch-g--border-lg [class^="batch-c"] {
848 | border-color: #EC5B05; }
849 |
850 | .batch-g--filled {
851 | background: #f9f9f9; }
852 | .batch-g--filled [class^="batch-c"] {
853 | background: #dddddd;
854 | font-size: 0.8em; }
855 |
856 | .batch-g--dl {
857 | font-size: 0.8em;
858 | margin: 0 0 2.25em; }
859 | .batch-g--dl > [class^="batch-c"]:nth-child(odd) {
860 | text-align: right; }
861 |
862 | .batch-g--templates {
863 | margin-bottom: 0.75em; }
864 | .batch-g--templates header {
865 | background: #EC5B05;
866 | color: #ffffff;
867 | text-align: center; }
868 | @media screen and (min-width: 600px) {
869 | .batch-g--templates header {
870 | height: 65px; } }
871 | .batch-g--templates aside {
872 | background: #BF3100;
873 | color: #ffffff;
874 | text-align: center; }
875 | @media screen and (min-width: 600px) {
876 | .batch-g--templates aside {
877 | height: 200px; } }
878 | .batch-g--templates aside:nth-of-type(2) {
879 | opacity: 0.7; }
880 | .batch-g--templates main {
881 | background: #8EA604;
882 | color: #ffffff;
883 | text-align: center; }
884 | @media screen and (min-width: 600px) {
885 | .batch-g--templates main {
886 | height: 200px; } }
887 | .batch-g--templates footer {
888 | background: #333333;
889 | color: #ffffff;
890 | text-align: center; }
891 | @media screen and (min-width: 600px) {
892 | .batch-g--templates footer {
893 | height: 65px; } }
894 |
895 | .highlight {
896 | color: #333333;
897 | margin-bottom: 10px;
898 | text-align: left; }
899 |
900 | .strong {
901 | font-weight: bold; }
902 |
903 | .small-text {
904 | font-size: 0.75em;
905 | line-height: 1.25em; }
906 |
907 | .highlight-sm .strong {
908 | font-weight: bold; }
909 |
910 | @media screen and (min-width: 600px) {
911 | .highlight-sm {
912 | opacity: 0.4; }
913 | .highlight-sm .strong {
914 | font-weight: normal; } }
915 |
916 | .highlight-md {
917 | opacity: 0.4; }
918 | .highlight-md .strong {
919 | font-weight: normal; }
920 | @media screen and (min-width: 600px) {
921 | .highlight-md {
922 | opacity: 1; }
923 | .highlight-md .strong {
924 | font-weight: bold; } }
925 | @media screen and (min-width: 900px) {
926 | .highlight-md {
927 | opacity: 0.4; }
928 | .highlight-md .strong {
929 | font-weight: normal; } }
930 |
931 | .highlight-lg {
932 | opacity: 0.4; }
933 | .highlight-lg .strong {
934 | font-weight: normal; }
935 | @media screen and (min-width: 900px) {
936 | .highlight-lg {
937 | opacity: 1; }
938 | .highlight-lg .strong {
939 | font-weight: bold; } }
940 |
941 | @media screen and (min-width: 600px) {
942 | .show-sm {
943 | display: none; } }
944 |
945 | @media screen and (max-width: 600px) {
946 | .hide-sm {
947 | display: none; } }
948 |
949 | @media screen and (max-width: 600px) {
950 | .show-md {
951 | display: none; } }
952 |
953 | @media screen and (min-width: 900px) {
954 | .show-md {
955 | display: none; } }
956 |
957 | @media (min-width: 600px) and (max-width: 900px) {
958 | .hide-md {
959 | display: none; } }
960 |
961 | @media screen and (max-width: 600px) {
962 | .show-lg {
963 | display: none; } }
964 |
965 | @media (min-width: 600px) and (max-width: 900px) {
966 | .show-lg {
967 | display: none; } }
968 |
969 | @media screen and (min-width: 900px) {
970 | .hide-lg {
971 | display: none; } }
972 |
973 | .footer {
974 | padding-bottom: 4.5em;
975 | padding-top: 4.5em;
976 | font-size: 0.8em; }
977 |
--------------------------------------------------------------------------------