1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
$colors:( "priamry":#db9e3f, "white":#fff, "dark": #000, "dark-1":#666, "red":#e74c3c, "info":#4b67af, );
$base-font-size: 1rem;
$font-sizes:(xxs:0.6154, xs:0.7692, //10px sm:0.9231, //12px md:1, //13px lg:1.0769, //14px xl:1.2308, //16px );
$flex-jc:(start:flex-start, end: flex-end, center:center, between:space-between, around:space-around);
$flex-ai:(start:flex-start, end: flex-end, center:center, baseline:baseline, stretch:stretch);
$spacing-types:(m: margin, p: padding);
$spacing-directions:(t:top, r:right, b:bottom, l:left);
$spacing-base-size:1rem;
$spacing-sizing:(0:0, 1:0.25, 2:0.5, 3:1, 4:1.5, 5:3)
|