Added min and max builtins.

This commit is contained in:
Kevin Gillette
2013-06-14 01:06:16 -06:00
committed by Luke Page
parent d2255e64f6
commit 6df4e48976
3 changed files with 47 additions and 0 deletions

View File

@@ -87,6 +87,12 @@
pow: pow(8px, 2);
pow: pow(4, 3);
pow: pow(3, 3em);
min: min(3, 3em);
min: min(3pt, 3em);
min: min(1%, 5%);
min: min(1%, 5px);
min: min(1pc, 3pt);
max: max(1, 3);
percentage: percentage((10px / 50));
color: color("#ff0011");
tint: tint(#777777, 13);