Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const dlFonts = function(dest) {
const urls = cssUrlParser(fs.readFileSync('styles/fonts.css').toString())
.filter(pathStr => !fs.existsSync(path.join(dest, pathStr)))
.map(urlStr => {
const tmpUrl = new URL(url.resolve("http://www1.wdr.de/resources/fonts/", urlStr));
const tmpUrl = new url.URL(url.resolve("http://www1.wdr.de/resources/fonts/", urlStr));
return url.format(tmpUrl, { fragment: false, search: false });
});

Expand Down
10 changes: 5 additions & 5 deletions styles/fonts.css
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
@font-face {
font-family: "WDRSlab";
font-weight: 400;
src: url("../fonts/wdrslab-regularvz-v101-web.eot?#iefix") format("embedded-opentype"), url("../fonts/wdrslab-regularvz-v101-web.woff") format("woff"), url("../fonts/wdrslab-regularvz-v101-web.ttf") format("truetype"), url("../fonts/wdrslab-regularvz-v101-web.svg") format("svg");
src: url(../fonts/wdrslab-regularvz-v101-web.eot?#iefix) format("embedded-opentype"), url(../fonts/wdrslab-regularvz-v101-web.woff) format("woff"), url(../fonts/wdrslab-regularvz-v101-web.ttf) format("truetype"), url(../fonts/wdrslab-regularvz-v101-web.svg) format("svg");
}
@font-face {
font-family: "WDRSlab";
font-weight: 800;
src: url("../fonts/wdrslab-boldvz-v101-web.eot?#iefix") format("embedded-opentype"), url("../fonts/wdrslab-boldvz-v101-web.woff") format("woff"), url("../fonts/wdrslab-boldvz-v101-web.ttf") format("truetype"), url("../fonts/wdrslab-boldvz-v101-web.svg") format("svg");
src: url(../fonts/wdrslab-boldvz-v101-web.eot?#iefix) format("embedded-opentype"), url(../fonts/wdrslab-boldvz-v101-web.woff) format("woff"), url(../fonts/wdrslab-boldvz-v101-web.ttf) format("truetype"), url(../fonts/wdrslab-boldvz-v101-web.svg) format("svg");
}
@font-face {
font-family: "Thesis";
font-style: italic;
src: url("../fonts/TheSans_LT_TT5_.woff") format("woff"), url("../fonts/TheSans_LT_TT5_.svg") format("svg");
src: url(../fonts/TheSans_LT_TT5_.woff) format("woff"), url(../fonts/TheSans_LT_TT5_.svg) format("svg");
}
@font-face {
font-family: "Thesis";
font-style: italic;
font-weight: 700;
src: url("../fonts/TheSans_LT_TT7_.woff") format("woff"), url("../fonts/TheSans_LT_TT7_.svg") format("svg");
src: url(../fonts/TheSans_LT_TT7_.woff) format("woff"), url(../fonts/TheSans_LT_TT7_.svg) format("svg");
}
@font-face {
font-family: "WDR Iconfont";
font-weight: 400;
src: url("../fonts/wdr-iconfont.eot?#iefix") format("embedded-opentype"), url("../fonts/wdr-iconfont.woff") format("woff"), url("../fonts/wdr-iconfont.ttf") format("truetype"), url("../fonts/wdr-iconfont.svg#wdr-iconfont") format("svg");
src: url(../fonts/wdr-iconfont.eot?#iefix) format("embedded-opentype"), url(../fonts/wdr-iconfont.woff) format("woff"), url(../fonts/wdr-iconfont.ttf) format("truetype"), url(../fonts/wdr-iconfont.svg#wdr-iconfont) format("svg");
}

@font-face {
Expand Down