Skip to content

Instantly share code, notes, and snippets.

View niktariy's full-sized avatar
🎯
Focusing

Veronika niktariy

🎯
Focusing
View GitHub Profile
@chrisengelsma
chrisengelsma / maths.scss
Created September 10, 2016 04:21
Basic sass math functions
// If for some reason you don't / can't use Compass...
@function pow($number, $exp) {
$value: 1;
@if $exp > 0 {
@for $i from 1 through $exp {
$value: $value * $number;
}
}
@else if $exp < 0 {