summaryrefslogtreecommitdiff
path: root/_sass/bourbon/css3/_font-face.scss
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-08 16:36:31 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-08 16:36:31 -0600
commite182245d3205d929881f51da9b48d6c4ed97a682 (patch)
treed390e8754dec70a9c9293afb801321b96f043c15 /_sass/bourbon/css3/_font-face.scss
Commit inicialHEADmaster
Diffstat (limited to '_sass/bourbon/css3/_font-face.scss')
-rw-r--r--_sass/bourbon/css3/_font-face.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/_sass/bourbon/css3/_font-face.scss b/_sass/bourbon/css3/_font-face.scss
new file mode 100644
index 0000000..a9fd1ef
--- /dev/null
+++ b/_sass/bourbon/css3/_font-face.scss
@@ -0,0 +1,24 @@
+@mixin font-face(
+ $font-family,
+ $file-path,
+ $weight: normal,
+ $style: normal,
+ $asset-pipeline: $asset-pipeline,
+ $file-formats: eot woff2 woff ttf svg) {
+
+ $font-url-prefix: font-url-prefixer($asset-pipeline);
+
+ @font-face {
+ font-family: $font-family;
+ font-style: $style;
+ font-weight: $weight;
+
+ src: font-source-declaration(
+ $font-family,
+ $file-path,
+ $asset-pipeline,
+ $file-formats,
+ $font-url-prefix
+ );
+ }
+}