123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // helper
- -pos(type, args)
- i = 0
- position: unquote(type)
- for j in (1..4)
- if length(args) > i
- {args[i]}: args[i + 1] is a 'unit' ? args[i += 1] : 0
- i += 1
- /*
- * Position utility.
- *
- * Synopsis:
- *
- * fixed: <pos> [n] <pos> [n]
- *
- * Examples:
- *
- * fixed: top left
- * fixed: top 5px left
- * fixed: top left 5px
- * fixed: top 5px left 5px
- *
- */
- fixed()
- -pos('fixed', arguments)
- /*
- * Position utility.
- *
- * Synopsis:
- *
- * absolute: <pos> [n] <pos> [n]
- *
- * Examples:
- *
- * absolute: top left
- * absolute: top 5px left
- * absolute: top left 5px
- * absolute: top 5px left 5px
- *
- */
- absolute()
- -pos('absolute', arguments)
- /*
- * Position utility.
- *
- * Synopsis:
- *
- * relative: <pos> [n] <pos> [n]
- *
- * Examples:
- *
- * relative: top left
- * relative: top 5px left
- * relative: top left 5px
- * relative: top 5px left 5px
- *
- */
- relative()
- -pos('relative', arguments)
|