Skip to content

Instantly share code, notes, and snippets.

View jdspugh's full-sized avatar

Jonathan Pugh jdspugh

View GitHub Profile
@jdspugh
jdspugh / _util.scss
Last active May 12, 2016 00:47
Text Stroke SCSS
@function pi() {
@return 3.14159265359;
}
@function pow($number, $exp) {
$value: 1;
@if $exp > 0 {
@for $i from 1 through $exp {
$value: $value * $number;
}