From: Martin Kletzander Date: Fri, 18 Nov 2016 13:56:08 +0000 (+0100) Subject: docs: Add monospaced Overpass fonts X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=63f20e6677929244bc494761acc99e4f0b0be100;p=libvirt.git docs: Add monospaced Overpass fonts Overpass 3.0 has monospaced fonts, so why not have the same font for the monospaced parts of the documentation. Signed-off-by: Martin Kletzander --- diff --git a/docs/fonts/overpass-mono-bold.woff b/docs/fonts/overpass-mono-bold.woff new file mode 100644 index 0000000000..9b2dd0d4c2 Binary files /dev/null and b/docs/fonts/overpass-mono-bold.woff differ diff --git a/docs/fonts/overpass-mono-light.woff b/docs/fonts/overpass-mono-light.woff new file mode 100644 index 0000000000..19efd74b01 Binary files /dev/null and b/docs/fonts/overpass-mono-light.woff differ diff --git a/docs/fonts/overpass-mono-regular.woff b/docs/fonts/overpass-mono-regular.woff new file mode 100644 index 0000000000..e79bd51663 Binary files /dev/null and b/docs/fonts/overpass-mono-regular.woff differ diff --git a/docs/fonts/overpass-mono-semibold.woff b/docs/fonts/overpass-mono-semibold.woff new file mode 100644 index 0000000000..500f0e4410 Binary files /dev/null and b/docs/fonts/overpass-mono-semibold.woff differ diff --git a/docs/fonts/stylesheet.css b/docs/fonts/stylesheet.css index 9b86bc4481..1a06f22c35 100644 --- a/docs/fonts/stylesheet.css +++ b/docs/fonts/stylesheet.css @@ -39,3 +39,24 @@ font-weight: 300; font-style: italic; } + +@font-face { + font-family: 'LibvirtOverpassMono'; + src: url('overpass-mono-regular.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'LibvirtOverpassMono'; + src: url('overpass-mono-bold.woff') format('woff'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'LibvirtOverpassMonoLight'; + src: url('overpass-mono-light.woff') format('woff'); + font-weight: 300; + font-style: normal; +}