Lines Matching refs:list

14     @if type-of($base-size) == "list" {
19 // return just the simple $base-size value if it's not a list
23 // if multiple base-sizes are passed in as a list
24 // and multiple ratios are passed in as a list
26 @if type-of($base-size) == "list" and type-of($ratio) == "list" {
33 // if multiple base-sizes are passed in as a list
35 @if type-of($base-size) == "list" and type-of($ratio) == "number" {
42 // if multiple ratios are passed in as a list
44 @if type-of($base-size) == "number" and type-of($ratio) == "list" {
61 // start with an empty list to place all values in
71 // add each $base-size to the list except the first
119 // return trimmed and sorted final list
126 // start with an empty list to place all values in
136 // add each $base-size to the list except the first
178 // return trimmed and sorted final list
185 // start with an empty list to place all values in
209 // return the final value using the laced list
234 // return the final value using the laced list
239 // trim and sort the final list
243 // trim list so we can count from the lowest $base-size
249 // return the final value using the laced list
254 // trim list so we can count from the lowest $base-size
260 // return the final value using the laced list
279 @function modular-scale-list($start: 0, $finish: 20, $base-size: $base-size, $ratio: $ratio, $round…
280 $ms-list: unquote("MS-LIST:");
282 $ms-list: append($ms-list, ms($i, $base-size, $ratio, $round-pixels));
284 @return $ms-list;
287 @function ms-list($start: 0, $finish: 20, $base-size: $base-size, $ratio: $ratio, $round-pixels: $r…
288 @return modular-scale-list($start, $finish, $base-size, $ratio, $round-pixels);
291 @mixin modular-scale-list($start: 0, $finish: 20, $base-size: $base-size, $ratio: $ratio, $round-pi…
292 @debug modular-scale-list($start, $finish, $base-size, $ratio, $round-pixels);
295 @mixin ms-list($start: 0, $finish: 20, $base-size: $base-size, $ratio: $ratio, $round-pixels: $roun…
296 @debug modular-scale-list($start, $finish, $base-size, $ratio, $round-pixels);
299 @mixin modular-scale-list-output($start: 0, $finish: 20, $base-size: $base-size, $ratio: $ratio, $r…
301 ms-list: modular-scale-list($start, $finish, $base-size, $ratio, $round-pixels);
305 @mixin ms-list-output($start: 0, $finish: 20, $base-size: $base-size, $ratio: $ratio, $round-pixels…
306 @include modular-scale-list-output($start, $finish, $base-size, $ratio, $round-pixels);