diff options
author | Thomas Park <thomas@thomaspark.co> | 2015-09-03 16:39:50 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.co> | 2015-09-03 16:39:50 -0400 |
commit | 913f54b9483b99fa12c7feccfa18ee5cc0206043 (patch) | |
tree | 6ff4cb55fb019e25233c2652b4e62a8e5c425757 /cyborg | |
parent | 884b1111fabf1b06470eb36836bb13d74a0b93bd (diff) |
set web font path as variable that can be overridden, closes #507
Diffstat (limited to 'cyborg')
-rw-r--r-- | cyborg/_bootswatch.scss | 7 | ||||
-rw-r--r-- | cyborg/bootswatch.less | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/cyborg/_bootswatch.scss b/cyborg/_bootswatch.scss index d72d0c28..9147ae20 100644 --- a/cyborg/_bootswatch.scss +++ b/cyborg/_bootswatch.scss @@ -2,7 +2,12 @@ // Bootswatch // ----------------------------------------------------- -@import url("https://fonts.googleapis.com/css?family=Roboto:400,700"); +$web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,700" !default; + +@mixin web-font($path){ + @import url("#{$path}"); +} +@include web-font($web-font-path); // Navbar ===================================================================== diff --git a/cyborg/bootswatch.less b/cyborg/bootswatch.less index 4b2cd789..6c03f26d 100644 --- a/cyborg/bootswatch.less +++ b/cyborg/bootswatch.less @@ -2,7 +2,12 @@ // Bootswatch // ----------------------------------------------------- -@import url("https://fonts.googleapis.com/css?family=Roboto:400,700"); +@web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,700"; + +.web-font(@path) { + @import url("@{path}"); +} +.web-font(@web-font-path); // Navbar ===================================================================== |