Created
May 29, 2014 14:50
-
-
Save alyssais/e8b18c3caed8bd8952ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import "web-fonts"; | |
| @include web-fonts("Open Sans", "Droid Serif", "Pacifico"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @function wf-str-replace($string, $find, $replace, $all: true) { | |
| $index: str-index($string, $find); | |
| @if $index { | |
| $before: str-slice($string, 1, $index - 1); | |
| $after: str-slice($string, $index + str-length($find), str-length($string)); | |
| $string: $before + $replace + $after; | |
| @if $all and not str-index($find, $replace) { | |
| $string: wf-str-replace($string, $find, $replace); | |
| } | |
| } | |
| @return $string; | |
| } | |
| @function wf-url-encode($string) { | |
| $replacements: ( | |
| "!": "%21", | |
| "#": "%23", | |
| "$": "%24", | |
| "&": "%26", | |
| "'": "%27", | |
| "(": "%28", | |
| ")": "%29", | |
| "*": "%2A", | |
| "+": "%2B", | |
| ",": "%2C", | |
| "/": "%2F", | |
| ":": "%3A", | |
| ";": "%3B", | |
| "=": "%3D", | |
| "?": "%3F", | |
| "@": "%40", | |
| "[": "%5B", | |
| "]": "%5D" | |
| ); | |
| @each $from, $to in $replacements { | |
| $string: wf-str-replace($string, $from, $to); | |
| } | |
| @return $string; | |
| } | |
| @function wf-implode($list, $seperator: ",") { | |
| $string: ""; | |
| @for $i from 1 through length($list) { | |
| $el: nth($list, $i); | |
| $string: $string + $el; | |
| @if ($i < length($list)) { | |
| $string: $string + $seperator; | |
| } | |
| } | |
| @return $string; | |
| } | |
| @function wf-serialize($fonts) { | |
| @if type-of($fonts) == 'list' or type-of($fonts) == 'arglist' { | |
| $serialized: (); | |
| @each $font in $fonts { | |
| $serialized: append($serialized, wf-serialize($font)); | |
| } | |
| @return wf-implode($serialized, "|"); | |
| } | |
| @if type-of($fonts) == 'map' { | |
| $serialized: (); | |
| @each $family, $variants in $fonts { | |
| $variants: wf-implode($variants, ","); | |
| $variants: wf-str-replace($variants, " ", ""); | |
| $serialized: append($serialized, "#{$family}:#{$variants}"); | |
| } | |
| @return wf-serialize($serialized); | |
| } | |
| @if type-of($fonts) == 'string' { | |
| @return wf-url-encode($fonts); | |
| } | |
| @warn "Unsupported font type: #{type-of($fonts)}"; | |
| } | |
| @mixin web-fonts($fonts...) { | |
| $web-fonts-protocol: "" !default; | |
| $protocol: $web-fonts-protocol; | |
| @if str-length($protocol) > 0 { | |
| $protocol: $protocol + ":"; | |
| } | |
| $url: "#{$protocol}//fonts.googleapis.com/css?family="; | |
| $url: $url + wf-serialize($fonts); | |
| @import url($url); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment