Skip to content

Commit

Permalink
- added .sassdocrc
Browse files Browse the repository at this point in the history
- added documentation for types group
  • Loading branch information
Black Mirror committed Apr 26, 2018
1 parent ecb8a9a commit 86fa8ae
Show file tree
Hide file tree
Showing 29 changed files with 2,174 additions and 121 deletions.
53 changes: 53 additions & 0 deletions .sassdocrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
dest: docs
theme: flippant
description: |
## Flavor SCSS - Advanced and strongly type checked mixins with a Grid System
---
#### Greetings to
* [Hugo Giraudel](https://hugogiraudel.com)
* [Bootstrap](https://getbootstrap.com)
* [normalize.css](https://github.com/necolas/normalize.css)
sort:
- group
- file
- access
groups:
undefined: Core
core: Core
grid-system-columns: Grid System - Columns Module
grid-system-containers: Grid System - Containers Module
grid-system-helpers: Grid System - Helpers Module
grid-system-reboot: Grid System - Reboot Module
grid-system-rows: Grid System - Rows Module
grid-system-options: Grid System - Options
grid-system: Grid System
mixins-animation: Mixins - Animation Module
mixins-appearance: Mixins - Appearance Module
mixins-background: Mixins - Background Module
mixins-border: Mixins - Border Module
mixins-box: Mixins - Box Module
mixins-cursor: Mixins - Cursor Module
mixins-filter: Mixins - Filter Module
mixins-margin: Mixins - Margin Module
mixins-media: Mixins - Media Module
mixins-overflow: Mixins - Overflow Module
mixins-padding: Mixins - Padding Module
mixins-text: Mixins - Text Module
mixins-transform: Mixins - Transform Module
mixins-transition: Mixins - Transition Module
mixins-utils: Mixins - Utils Module
mixins: Mixins
types-angle: Types - Angle Module
types-array: Types - Array Module
types-boolean: Types - Boolean Module
types-color: Types - Color Module
types-common: Types - Common Module
types-frequency: Types - Frequency Module
types-function: Types - Function Module
types-number: Types - Number Module
types-object: Types - Object Module
types-string: Types - String Module
types-time: Types - Time Module
types-url: Types - URL Module
types: Types
options: Options
771 changes: 770 additions & 1 deletion docs/assets/css/main.css

Large diffs are not rendered by default.

Binary file modified docs/assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/assets/js/main.min.js

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions docs/assets/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
var $item = $(item);

return {
group: $item.data('group'),
name: $item.data('name'),
type: $item.data('type'),
node: $item
Expand All @@ -47,10 +46,9 @@

var suggestions = $.map(items.slice(0, 10), function (item) {
var $li = $('<li />', {
'data-group': item.group,
'data-type': item.type,
'data-name': item.name,
'html': '<a href="#' + item.group + '-' + item.type + '-' + item.name + '"><code>' + item.type.slice(0, 3) + '</code> ' + item.name + '</a>'
'html': '<a href="#' + item.type + '-' + item.name + '"><code>' + item.type.slice(0, 3) + '</code> ' + item.name + '</a>'
});

searchSuggestions.append($li);
Expand Down Expand Up @@ -143,4 +141,4 @@

global.Search = Search;

}(window.jQuery, window));
}(window.jQuery, window));
2 changes: 1 addition & 1 deletion docs/assets/js/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
$('<span />', {
'class': 'layout-toggle',
'html': '&times;',
'data-alt': '&#8594;'
'data-alt': '&#9776'
}).appendTo( $('.header') );

$('.layout-toggle').on('click', function () {
Expand Down
404 changes: 372 additions & 32 deletions docs/index.html

Large diffs are not rendered by default.

Loading

0 comments on commit 86fa8ae

Please sign in to comment.