diff options
author | Sam <me@sampotts.me> | 2016-06-07 12:34:36 +0100 |
---|---|---|
committer | Sam <me@sampotts.me> | 2016-06-07 12:34:36 +0100 |
commit | 70646ca90798823932573f209eb30f6a8e82694f (patch) | |
tree | 128cacc9bd428446ba741b39cacad5a06a032f38 /demo/src/less/lib/fontface.less | |
parent | 4afd311ef64fbef2744e3fda04cbbe7ce56e2cbe (diff) | |
download | plyr-70646ca90798823932573f209eb30f6a8e82694f.tar.lz plyr-70646ca90798823932573f209eb30f6a8e82694f.tar.xz plyr-70646ca90798823932573f209eb30f6a8e82694f.zip |
See changelog (fixes #265, #253, #257)
Diffstat (limited to 'demo/src/less/lib/fontface.less')
-rw-r--r-- | demo/src/less/lib/fontface.less | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/demo/src/less/lib/fontface.less b/demo/src/less/lib/fontface.less new file mode 100644 index 00000000..a7da5ad9 --- /dev/null +++ b/demo/src/less/lib/fontface.less @@ -0,0 +1,18 @@ +// ========================================================================== +// Fonts +// ========================================================================== + +@font-face { + font-family: "Avenir"; + src: url("//cdn.plyr.io/fonts/avenir-medium.woff2") format("woff2"), + url("//cdn.plyr.io/fonts/avenir-medium.woff") format("woff"); + font-style: normal; + font-weight: @font-weight-base; +} +@font-face { + font-family: "Avenir"; + src: url("//cdn.plyr.io/fonts/avenir-bold.woff2") format("woff2"), + url("//cdn.plyr.io/fonts/avenir-bold.woff") format("woff"); + font-style: normal; + font-weight: @font-weight-bold; +}
\ No newline at end of file |