From 4012072cf5215a753d76584ffda17cde7e395912 Mon Sep 17 00:00:00 2001 From: Joe Bottigliero Date: Thu, 15 Oct 2015 12:57:28 -0500 Subject: [PATCH] Blackout font-face CSS - Adds a `stylesheet.css` implementation for the Blackout fonts (based on [League Gothic implementation](https://github.com/theleagueof/league-gothic/blob/master/webfonts/stylesheet.css)). --- webfonts/stylesheet.css | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 webfonts/stylesheet.css diff --git a/webfonts/stylesheet.css b/webfonts/stylesheet.css new file mode 100644 index 0000000..f9a5786 --- /dev/null +++ b/webfonts/stylesheet.css @@ -0,0 +1,37 @@ +/* Blackout Midnight */ +@font-face { + font-family: 'Blackout Midnight'; + src: url('blackout_midnight-webfont.eot'); + src: url('blackout_midnight-webfont.eot?#iefix') format('embedded-opentype'), + url('blackout_midnight-webfont.woff') format('woff'), + url('blackout_midnight-webfont.ttf') format('truetype'), + url('blackout_midnight-webfont.svg#BlackoutMidnight') format('svg'); + font-weight: normal; + font-style: normal; + +} + +/* Blackout Sunrise */ +@font-face { + font-family: 'Blackout Sunrise'; + src: url('blackout_sunrise-webfont.eot'); + src: url('blackout_sunrise-webfont.eot?#iefix') format('embedded-opentype'), + url('blackout_sunrise-webfont.woff') format('woff'), + url('blackout_sunrise-webfont.ttf') format('truetype'), + url('blackout_sunrise-webfont.svg#BlackoutSunrise') format('svg'); + font-weight: normal; + font-style: normal; + +} + +/* Blackout Two AM */ +@font-face { + font-family: 'Blackout Two AM'; + src: url('blackout_two_am-webfont.eot'); + src: url('blackout_two_am-webfont.eot?#iefix') format('embedded-opentype'), + url('blackout_two_am-webfont.woff') format('woff'), + url('blackout_two_am-webfont.ttf') format('truetype'), + url('blackout_two_am-webfont.svg#BlackoutTwoAM') format('svg'); + font-weight: normal; + font-style: normal; +} \ No newline at end of file