foundation-scss 6.3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/_vendor/normalize-scss/sass/_normalize.scss +3 -0
- data/_vendor/normalize-scss/sass/normalize/_import-now.scss +11 -0
- data/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss +676 -0
- data/_vendor/normalize-scss/sass/normalize/_variables.scss +36 -0
- data/_vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss +61 -0
- data/_vendor/sassy-lists/stylesheets/functions/_purge.scss +38 -0
- data/_vendor/sassy-lists/stylesheets/functions/_remove.scss +31 -0
- data/_vendor/sassy-lists/stylesheets/functions/_replace.scss +46 -0
- data/_vendor/sassy-lists/stylesheets/functions/_to-list.scss +27 -0
- data/_vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss +25 -0
- data/_vendor/sassy-lists/stylesheets/helpers/_true.scss +13 -0
- data/foundation-scss.gemspec +9 -0
- data/lib/foundation/scss/in/sass_path.rb +6 -0
- data/scss/_global.scss +219 -0
- data/scss/components/_accordion-menu.scss +36 -0
- data/scss/components/_accordion.scss +150 -0
- data/scss/components/_badge.scss +63 -0
- data/scss/components/_breadcrumbs.scss +100 -0
- data/scss/components/_button-group.scss +253 -0
- data/scss/components/_button.scss +332 -0
- data/scss/components/_callout.scss +106 -0
- data/scss/components/_card.scss +121 -0
- data/scss/components/_close-button.scss +102 -0
- data/scss/components/_drilldown.scss +93 -0
- data/scss/components/_dropdown-menu.scss +226 -0
- data/scss/components/_dropdown.scss +72 -0
- data/scss/components/_flex-video.scss +1 -0
- data/scss/components/_flex.scss +34 -0
- data/scss/components/_float.scss +27 -0
- data/scss/components/_label.scss +64 -0
- data/scss/components/_media-object.scss +114 -0
- data/scss/components/_menu-icon.scss +9 -0
- data/scss/components/_menu.scss +376 -0
- data/scss/components/_off-canvas.scss +329 -0
- data/scss/components/_orbit.scss +196 -0
- data/scss/components/_pagination.scss +193 -0
- data/scss/components/_progress-bar.scss +64 -0
- data/scss/components/_responsive-embed.scss +70 -0
- data/scss/components/_reveal.scss +178 -0
- data/scss/components/_slider.scss +138 -0
- data/scss/components/_sticky.scss +38 -0
- data/scss/components/_switch.scss +247 -0
- data/scss/components/_table.scss +329 -0
- data/scss/components/_tabs.scss +196 -0
- data/scss/components/_thumbnail.scss +67 -0
- data/scss/components/_title-bar.scss +84 -0
- data/scss/components/_tooltip.scss +107 -0
- data/scss/components/_top-bar.scss +173 -0
- data/scss/components/_visibility.scss +132 -0
- data/scss/forms/_checkbox.scss +41 -0
- data/scss/forms/_error.scss +88 -0
- data/scss/forms/_fieldset.scss +54 -0
- data/scss/forms/_forms.scss +34 -0
- data/scss/forms/_help-text.scss +30 -0
- data/scss/forms/_input-group.scss +135 -0
- data/scss/forms/_label.scss +50 -0
- data/scss/forms/_meter.scss +110 -0
- data/scss/forms/_progress.scss +94 -0
- data/scss/forms/_range.scss +149 -0
- data/scss/forms/_select.scss +85 -0
- data/scss/forms/_text.scss +170 -0
- data/scss/foundation.scss +118 -0
- data/scss/grid/_classes.scss +176 -0
- data/scss/grid/_column.scss +112 -0
- data/scss/grid/_flex-grid.scss +312 -0
- data/scss/grid/_grid.scss +48 -0
- data/scss/grid/_gutter.scss +82 -0
- data/scss/grid/_layout.scss +76 -0
- data/scss/grid/_position.scss +76 -0
- data/scss/grid/_row.scss +99 -0
- data/scss/grid/_size.scss +24 -0
- data/scss/settings/_settings.scss +620 -0
- data/scss/typography/_alignment.scss +22 -0
- data/scss/typography/_base.scss +509 -0
- data/scss/typography/_helpers.scss +78 -0
- data/scss/typography/_print.scss +86 -0
- data/scss/typography/_typography.scss +26 -0
- data/scss/util/_breakpoint.scss +281 -0
- data/scss/util/_color.scss +126 -0
- data/scss/util/_direction.scss +31 -0
- data/scss/util/_flex.scss +85 -0
- data/scss/util/_math.scss +72 -0
- data/scss/util/_mixins.scss +276 -0
- data/scss/util/_selector.scss +41 -0
- data/scss/util/_typography.scss +26 -0
- data/scss/util/_unit.scss +152 -0
- data/scss/util/_util.scss +14 -0
- data/scss/util/_value.scss +160 -0
- metadata +144 -0
@@ -0,0 +1,41 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group functions
|
7
|
+
////
|
8
|
+
|
9
|
+
/// Generates a selector with every text input type. You can also filter the list to only output a subset of those selectors.
|
10
|
+
///
|
11
|
+
/// @param {List|Keyword} $types [()] - A list of text input types to use. Leave blank to use all of them.
|
12
|
+
/// @param {Keyword} $modifier [''] - A modifier to be applied to each text input type (e.g. a class or a pseudo-class). Leave blank to ignore.
|
13
|
+
@function text-inputs($types: (), $modifier: '') {
|
14
|
+
$return: ();
|
15
|
+
|
16
|
+
$all-types:
|
17
|
+
text
|
18
|
+
password
|
19
|
+
date
|
20
|
+
datetime
|
21
|
+
datetime-local
|
22
|
+
month
|
23
|
+
week
|
24
|
+
email
|
25
|
+
number
|
26
|
+
search
|
27
|
+
tel
|
28
|
+
time
|
29
|
+
url
|
30
|
+
color;
|
31
|
+
|
32
|
+
@if not has-value($types) {
|
33
|
+
$types: $all-types;
|
34
|
+
}
|
35
|
+
|
36
|
+
@each $type in $types {
|
37
|
+
$return: append($return, unquote('[type=\'#{$type}\']#{$modifier}'), comma);
|
38
|
+
}
|
39
|
+
|
40
|
+
@return $return;
|
41
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group functions
|
7
|
+
////
|
8
|
+
|
9
|
+
$-zf-font-stack: (
|
10
|
+
'georgia': (Georgia, "URW Bookman L", serif),
|
11
|
+
'helvetica': (Helvetica, Arial, "Nimbus Sans L", sans-serif),
|
12
|
+
'lucida-grande': ("Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", sans-serif),
|
13
|
+
'monospace': ("Courier New", Courier, "Nimbus Sans L", monospace),
|
14
|
+
'system': (-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif),
|
15
|
+
'verdana': (Verdana, Geneva, "DejaVu Sans", sans-serif),
|
16
|
+
);
|
17
|
+
|
18
|
+
/// Return a font stack list from a map. Equivalent to `map-safe-get($name, $-zf-font-stack)`.
|
19
|
+
///
|
20
|
+
/// @param {String} $stack - Name of the font stack.
|
21
|
+
/// @param {Map} $map [$-zf-font-stack] - Map of font stacks to retrieve a list from.
|
22
|
+
///
|
23
|
+
/// @returns {List} Found font stack.
|
24
|
+
@function font-stack($stack, $map: $-zf-font-stack) {
|
25
|
+
@return map-safe-get($map, $stack);
|
26
|
+
}
|
@@ -0,0 +1,152 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group functions
|
7
|
+
////
|
8
|
+
|
9
|
+
$global-font-size: 100% !default;
|
10
|
+
|
11
|
+
/// Removes the unit (e.g. px, em, rem) from a value, returning the number only.
|
12
|
+
///
|
13
|
+
/// @param {Number} $num - Number to strip unit from.
|
14
|
+
///
|
15
|
+
/// @returns {Number} The same number, sans unit.
|
16
|
+
@function strip-unit($num) {
|
17
|
+
@return $num / ($num * 0 + 1);
|
18
|
+
}
|
19
|
+
|
20
|
+
/// Converts one or more pixel values into matching rem values.
|
21
|
+
///
|
22
|
+
/// @param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.
|
23
|
+
/// @param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.
|
24
|
+
///
|
25
|
+
/// @returns {List} A list of converted values.
|
26
|
+
@function rem-calc($values, $base: null) {
|
27
|
+
$rem-values: ();
|
28
|
+
$count: length($values);
|
29
|
+
|
30
|
+
// If no base is defined, defer to the global font size
|
31
|
+
@if $base == null {
|
32
|
+
$base: $global-font-size;
|
33
|
+
}
|
34
|
+
|
35
|
+
// If the base font size is a %, then multiply it by 16px
|
36
|
+
// This is because 100% font size = 16px in most all browsers
|
37
|
+
@if unit($base) == '%' {
|
38
|
+
$base: ($base / 100%) * 16px;
|
39
|
+
}
|
40
|
+
|
41
|
+
// Using rem as base allows correct scaling
|
42
|
+
@if unit($base) == 'rem' {
|
43
|
+
$base: strip-unit($base) * 16px;
|
44
|
+
}
|
45
|
+
|
46
|
+
@if $count == 1 {
|
47
|
+
@return -zf-to-rem($values, $base);
|
48
|
+
}
|
49
|
+
|
50
|
+
@for $i from 1 through $count {
|
51
|
+
$rem-values: append($rem-values, -zf-to-rem(nth($values, $i), $base));
|
52
|
+
}
|
53
|
+
|
54
|
+
@return $rem-values;
|
55
|
+
}
|
56
|
+
|
57
|
+
// Converts a unitless, pixel, or rem value to em, for use in breakpoints.
|
58
|
+
@function -zf-bp-to-em($value) {
|
59
|
+
// Pixel and unitless values are converted to rems
|
60
|
+
@if unit($value) == 'px' or unitless($value) {
|
61
|
+
$value: rem-calc($value, $base: 16px);
|
62
|
+
}
|
63
|
+
|
64
|
+
// Then the value is converted to ems
|
65
|
+
@return strip-unit($value) * 1em;
|
66
|
+
}
|
67
|
+
|
68
|
+
/// Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.
|
69
|
+
/// @access private
|
70
|
+
///
|
71
|
+
/// @param {Number} $value - Pixel value to convert.
|
72
|
+
/// @param {Number} $base [null] - Base for pixel conversion.
|
73
|
+
///
|
74
|
+
/// @returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.
|
75
|
+
@function -zf-to-rem($value, $base: null) {
|
76
|
+
// Check if the value is a number
|
77
|
+
@if type-of($value) != 'number' {
|
78
|
+
@warn inspect($value) + ' was passed to rem-calc(), which is not a number.';
|
79
|
+
@return $value;
|
80
|
+
}
|
81
|
+
|
82
|
+
// Transform em into rem if someone hands over 'em's
|
83
|
+
@if unit($value) == 'em' {
|
84
|
+
$value: strip-unit($value) * 1rem;
|
85
|
+
}
|
86
|
+
|
87
|
+
// Calculate rem if units for $value is not rem or em
|
88
|
+
@if unit($value) != 'rem' {
|
89
|
+
$value: strip-unit($value) / strip-unit($base) * 1rem;
|
90
|
+
}
|
91
|
+
|
92
|
+
// Turn 0rem into 0
|
93
|
+
@if $value == 0rem {
|
94
|
+
$value: 0;
|
95
|
+
}
|
96
|
+
|
97
|
+
@return $value;
|
98
|
+
}
|
99
|
+
|
100
|
+
/// Converts a pixel, percentage, rem or em value to a unitless value based on a given font size. Ideal for working out unitless line heights.
|
101
|
+
///
|
102
|
+
/// @param {Number} $value - Value to convert to a unitless line height
|
103
|
+
/// @param {Number} $base - The font size to use to work out the line height - defaults to $global-font-size
|
104
|
+
///
|
105
|
+
/// @return {Number} - Unitless number
|
106
|
+
@function unitless-calc($value, $base: null) {
|
107
|
+
|
108
|
+
// If no base is defined, defer to the global font size
|
109
|
+
@if $base == null {
|
110
|
+
$base: $global-font-size;
|
111
|
+
}
|
112
|
+
|
113
|
+
// First, lets convert our $base to pixels
|
114
|
+
|
115
|
+
// If the base font size is a %, then multiply it by 16px
|
116
|
+
@if unit($base) == '%' {
|
117
|
+
$base: ($base / 100%) * 16px;
|
118
|
+
}
|
119
|
+
|
120
|
+
@if unit($base) == 'rem' {
|
121
|
+
$base: strip-unit($base) * 16px;
|
122
|
+
}
|
123
|
+
|
124
|
+
@if unit($base) == 'em' {
|
125
|
+
$base: strip-unit($base) * 16px;
|
126
|
+
}
|
127
|
+
|
128
|
+
// Now lets convert our value to pixels too
|
129
|
+
@if unit($value) == '%' {
|
130
|
+
$value: ($value / 100%) * $base;
|
131
|
+
}
|
132
|
+
|
133
|
+
@if unit($value) == 'rem' {
|
134
|
+
$value: strip-unit($value) * $base;
|
135
|
+
}
|
136
|
+
|
137
|
+
@if unit($value) == 'em' {
|
138
|
+
$value: strip-unit($value) * $base;
|
139
|
+
}
|
140
|
+
|
141
|
+
// 'px'
|
142
|
+
@if unit($value) == 'px' {
|
143
|
+
@return strip-unit($value) / strip-unit($base);
|
144
|
+
}
|
145
|
+
|
146
|
+
// assume that line-heights greatern then 10 are meant to be absolute in 'px'
|
147
|
+
@if unitless($value) and ($value > 10) {
|
148
|
+
@return $value / strip-unit($base);
|
149
|
+
}
|
150
|
+
|
151
|
+
@return $value;
|
152
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
@import 'math';
|
6
|
+
@import 'unit';
|
7
|
+
@import 'value';
|
8
|
+
@import 'direction';
|
9
|
+
@import 'color';
|
10
|
+
@import 'selector';
|
11
|
+
@import 'flex';
|
12
|
+
@import 'breakpoint';
|
13
|
+
@import 'mixins';
|
14
|
+
@import 'typography';
|
@@ -0,0 +1,160 @@
|
|
1
|
+
// Foundation for Sites by ZURB
|
2
|
+
// foundation.zurb.com
|
3
|
+
// Licensed under MIT Open Source
|
4
|
+
|
5
|
+
////
|
6
|
+
/// @group functions
|
7
|
+
////
|
8
|
+
|
9
|
+
/// Determine if a value is not falsey, in CSS terms. Falsey values are `null`, `none`, `0` with any unit, or an empty list.
|
10
|
+
///
|
11
|
+
/// @param {Mixed} $val - Value to check.
|
12
|
+
///
|
13
|
+
/// @returns {Boolean} `true` if `$val` is not falsey.
|
14
|
+
@function has-value($val) {
|
15
|
+
@if $val == null or $val == none {
|
16
|
+
@return false;
|
17
|
+
}
|
18
|
+
@if type-of($val) == 'number' and strip-unit($val) == 0 {
|
19
|
+
@return false;
|
20
|
+
}
|
21
|
+
@if type-of($val) == 'list' and length($val) == 0 {
|
22
|
+
@return false;
|
23
|
+
}
|
24
|
+
@return true;
|
25
|
+
}
|
26
|
+
|
27
|
+
/// Determine a top/right/bottom/right value on a padding, margin, etc. property, no matter how many values were passed in. Use this function if you need to know the specific side of a value, but don't know if the value is using a shorthand format.
|
28
|
+
///
|
29
|
+
/// @param {List|Number} $val - Value to analyze. Should be a shorthand sizing property, e.g. "1em 2em 1em"
|
30
|
+
/// @param {Keyword} $side - Side to return. Should be `top`, `right`, `bottom`, or `left`.
|
31
|
+
///
|
32
|
+
/// @returns {Number} A single value based on `$val` and `$side`.
|
33
|
+
@function get-side($val, $side) {
|
34
|
+
$length: length($val);
|
35
|
+
|
36
|
+
@if $length == 1 {
|
37
|
+
@return $val;
|
38
|
+
}
|
39
|
+
@if $length == 2 {
|
40
|
+
@return map-get((
|
41
|
+
top: nth($val, 1),
|
42
|
+
bottom: nth($val, 1),
|
43
|
+
left: nth($val, 2),
|
44
|
+
right: nth($val, 2),
|
45
|
+
), $side);
|
46
|
+
}
|
47
|
+
@if $length == 3 {
|
48
|
+
@return map-get((
|
49
|
+
top: nth($val, 1),
|
50
|
+
left: nth($val, 2),
|
51
|
+
right: nth($val, 2),
|
52
|
+
bottom: nth($val, 3),
|
53
|
+
), $side);
|
54
|
+
}
|
55
|
+
@if $length == 4 {
|
56
|
+
@return map-get((
|
57
|
+
top: nth($val, 1),
|
58
|
+
right: nth($val, 2),
|
59
|
+
bottom: nth($val, 3),
|
60
|
+
left: nth($val, 4),
|
61
|
+
), $side);
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
/// Given border $val, find a specific element of the border, which is $elem. The possible values for $elem are width, style, and color.
|
66
|
+
///
|
67
|
+
/// @param {List} $val - Border value to find a value in.
|
68
|
+
/// @param {Keyword} $elem - Border component to extract.
|
69
|
+
///
|
70
|
+
/// @returns {Mixed} If the value exists, returns the value. If the value is not in the border definition, the function will return a 0px width, solid style, or black border.
|
71
|
+
@function get-border-value($val, $elem) {
|
72
|
+
// Find the width, style, or color and return it
|
73
|
+
@each $v in $val {
|
74
|
+
$type: type-of($v);
|
75
|
+
@if $elem == width and $type == 'number' {
|
76
|
+
@return $v;
|
77
|
+
}
|
78
|
+
@if $elem == style and $type == 'string' {
|
79
|
+
@return $v;
|
80
|
+
}
|
81
|
+
@if $elem == color and $type == 'color' {
|
82
|
+
@return $v;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
// Defaults
|
87
|
+
$defaults: (
|
88
|
+
width: 0,
|
89
|
+
style: solid,
|
90
|
+
color: #000,
|
91
|
+
);
|
92
|
+
|
93
|
+
@return map-get($defaults, $elem);
|
94
|
+
}
|
95
|
+
|
96
|
+
/// Finds a value in a nested map.
|
97
|
+
/// @link https://css-tricks.com/snippets/sass/deep-getset-maps/ Deep Get/Set in Maps
|
98
|
+
///
|
99
|
+
/// @param {Map} $map - Map to pull a value from.
|
100
|
+
/// @param {String} $keys... - Keys to use when looking for a value.
|
101
|
+
/// @returns {Mixed} The value found in the map.
|
102
|
+
@function map-deep-get($map, $keys...) {
|
103
|
+
@each $key in $keys {
|
104
|
+
$map: map-get($map, $key);
|
105
|
+
}
|
106
|
+
@return $map;
|
107
|
+
}
|
108
|
+
|
109
|
+
/// Casts a map into a list.
|
110
|
+
/// @link http://hugogiraudel.com/2014/04/28/casting-map-into-list/
|
111
|
+
///
|
112
|
+
/// @param {Map} $map - Map to pull a value from.
|
113
|
+
///
|
114
|
+
/// @returns {List} Depending on the flag, returns either $keys or $values or both.
|
115
|
+
@function map-to-list($map, $keep: 'both') {
|
116
|
+
$keep: if(index('keys' 'values', $keep), $keep, 'both');
|
117
|
+
|
118
|
+
@if type-of($map) == 'map' {
|
119
|
+
$keys: ();
|
120
|
+
$values: ();
|
121
|
+
|
122
|
+
@each $key, $val in $map {
|
123
|
+
$keys: append($keys, $key);
|
124
|
+
$values: append($values, $val);
|
125
|
+
}
|
126
|
+
|
127
|
+
@if $keep == 'keys' {
|
128
|
+
@return $keys;
|
129
|
+
}
|
130
|
+
@else if $keep == 'values' {
|
131
|
+
@return $values;
|
132
|
+
}
|
133
|
+
@else {
|
134
|
+
@return zip($keys, $values);
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
@return if(type-of($map) != 'list', ($value,), $map);
|
139
|
+
|
140
|
+
}
|
141
|
+
|
142
|
+
/// Safely return a value from a map.
|
143
|
+
///
|
144
|
+
/// @param {Map} $map - Map to retrieve a value from.
|
145
|
+
/// @param {String} $key - Name of the map key.
|
146
|
+
///
|
147
|
+
/// @returns {List} Found value.
|
148
|
+
@function map-safe-get($map, $key) {
|
149
|
+
@if (type-of($map) == 'map' or (type-of($map) == 'list' and length($map) == 0)) {
|
150
|
+
@if (map-has-key($map, $key)) {
|
151
|
+
@return map-get($map, $key);
|
152
|
+
}
|
153
|
+
@else {
|
154
|
+
@error 'Key: `#{$key}` is not available in `#{$map}`';
|
155
|
+
}
|
156
|
+
}
|
157
|
+
@else {
|
158
|
+
@error '`#{$map}` is not a valid map';
|
159
|
+
}
|
160
|
+
}
|
metadata
ADDED
@@ -0,0 +1,144 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: foundation-scss
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 6.3.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- https://github.com/zurb/foundation-sites
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-06-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: sass_paths
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description:
|
28
|
+
email:
|
29
|
+
executables: []
|
30
|
+
extensions: []
|
31
|
+
extra_rdoc_files: []
|
32
|
+
files:
|
33
|
+
- _vendor/normalize-scss/sass/_normalize.scss
|
34
|
+
- _vendor/normalize-scss/sass/normalize/_import-now.scss
|
35
|
+
- _vendor/normalize-scss/sass/normalize/_normalize-mixin.scss
|
36
|
+
- _vendor/normalize-scss/sass/normalize/_variables.scss
|
37
|
+
- _vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss
|
38
|
+
- _vendor/sassy-lists/stylesheets/functions/_purge.scss
|
39
|
+
- _vendor/sassy-lists/stylesheets/functions/_remove.scss
|
40
|
+
- _vendor/sassy-lists/stylesheets/functions/_replace.scss
|
41
|
+
- _vendor/sassy-lists/stylesheets/functions/_to-list.scss
|
42
|
+
- _vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss
|
43
|
+
- _vendor/sassy-lists/stylesheets/helpers/_true.scss
|
44
|
+
- foundation-scss.gemspec
|
45
|
+
- lib/foundation/scss/in/sass_path.rb
|
46
|
+
- scss/_global.scss
|
47
|
+
- scss/components/_accordion-menu.scss
|
48
|
+
- scss/components/_accordion.scss
|
49
|
+
- scss/components/_badge.scss
|
50
|
+
- scss/components/_breadcrumbs.scss
|
51
|
+
- scss/components/_button-group.scss
|
52
|
+
- scss/components/_button.scss
|
53
|
+
- scss/components/_callout.scss
|
54
|
+
- scss/components/_card.scss
|
55
|
+
- scss/components/_close-button.scss
|
56
|
+
- scss/components/_drilldown.scss
|
57
|
+
- scss/components/_dropdown-menu.scss
|
58
|
+
- scss/components/_dropdown.scss
|
59
|
+
- scss/components/_flex-video.scss
|
60
|
+
- scss/components/_flex.scss
|
61
|
+
- scss/components/_float.scss
|
62
|
+
- scss/components/_label.scss
|
63
|
+
- scss/components/_media-object.scss
|
64
|
+
- scss/components/_menu-icon.scss
|
65
|
+
- scss/components/_menu.scss
|
66
|
+
- scss/components/_off-canvas.scss
|
67
|
+
- scss/components/_orbit.scss
|
68
|
+
- scss/components/_pagination.scss
|
69
|
+
- scss/components/_progress-bar.scss
|
70
|
+
- scss/components/_responsive-embed.scss
|
71
|
+
- scss/components/_reveal.scss
|
72
|
+
- scss/components/_slider.scss
|
73
|
+
- scss/components/_sticky.scss
|
74
|
+
- scss/components/_switch.scss
|
75
|
+
- scss/components/_table.scss
|
76
|
+
- scss/components/_tabs.scss
|
77
|
+
- scss/components/_thumbnail.scss
|
78
|
+
- scss/components/_title-bar.scss
|
79
|
+
- scss/components/_tooltip.scss
|
80
|
+
- scss/components/_top-bar.scss
|
81
|
+
- scss/components/_visibility.scss
|
82
|
+
- scss/forms/_checkbox.scss
|
83
|
+
- scss/forms/_error.scss
|
84
|
+
- scss/forms/_fieldset.scss
|
85
|
+
- scss/forms/_forms.scss
|
86
|
+
- scss/forms/_help-text.scss
|
87
|
+
- scss/forms/_input-group.scss
|
88
|
+
- scss/forms/_label.scss
|
89
|
+
- scss/forms/_meter.scss
|
90
|
+
- scss/forms/_progress.scss
|
91
|
+
- scss/forms/_range.scss
|
92
|
+
- scss/forms/_select.scss
|
93
|
+
- scss/forms/_text.scss
|
94
|
+
- scss/foundation.scss
|
95
|
+
- scss/grid/_classes.scss
|
96
|
+
- scss/grid/_column.scss
|
97
|
+
- scss/grid/_flex-grid.scss
|
98
|
+
- scss/grid/_grid.scss
|
99
|
+
- scss/grid/_gutter.scss
|
100
|
+
- scss/grid/_layout.scss
|
101
|
+
- scss/grid/_position.scss
|
102
|
+
- scss/grid/_row.scss
|
103
|
+
- scss/grid/_size.scss
|
104
|
+
- scss/settings/_settings.scss
|
105
|
+
- scss/typography/_alignment.scss
|
106
|
+
- scss/typography/_base.scss
|
107
|
+
- scss/typography/_helpers.scss
|
108
|
+
- scss/typography/_print.scss
|
109
|
+
- scss/typography/_typography.scss
|
110
|
+
- scss/util/_breakpoint.scss
|
111
|
+
- scss/util/_color.scss
|
112
|
+
- scss/util/_direction.scss
|
113
|
+
- scss/util/_flex.scss
|
114
|
+
- scss/util/_math.scss
|
115
|
+
- scss/util/_mixins.scss
|
116
|
+
- scss/util/_selector.scss
|
117
|
+
- scss/util/_typography.scss
|
118
|
+
- scss/util/_unit.scss
|
119
|
+
- scss/util/_util.scss
|
120
|
+
- scss/util/_value.scss
|
121
|
+
homepage:
|
122
|
+
licenses: []
|
123
|
+
metadata: {}
|
124
|
+
post_install_message:
|
125
|
+
rdoc_options: []
|
126
|
+
require_paths:
|
127
|
+
- lib
|
128
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - ">="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0'
|
138
|
+
requirements: []
|
139
|
+
rubyforge_project:
|
140
|
+
rubygems_version: 2.6.11
|
141
|
+
signing_key:
|
142
|
+
specification_version: 4
|
143
|
+
summary: SCSS files from Zurb Foundation
|
144
|
+
test_files: []
|