Skip to content

Instantly share code, notes, and snippets.

View stnvh's full-sized avatar

Stan Hutcheon stnvh

  • Norwich, Norfolk
View GitHub Profile
@stnvh
stnvh / _fraction.scss
Last active August 29, 2015 14:06
Decimal to simplified fraction in SCSS
/* Decimal to simplified fraction (using the Euclidean algorithm)
---------------------------------------------------------------------------------- */
@function fraction($num) {
$top: $num * 100;
$bottom: 100;
$return: '';
$a: abs($top); $b: abs($bottom);