From: Andrea Bolognani Date: Tue, 21 Dec 2021 15:21:35 +0000 (+0100) Subject: docs: Move font definitions with other CSS files X-Git-Tag: v8.0.0-rc1~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c2d9794dc87885cdabd479fcfae892d216cd109;p=thirdparty%2Flibvirt.git docs: Move font definitions with other CSS files We have a subdirectory specifically for CSS files now, so it makes sense to have the stylesheet that defines fonts to be there too. Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrangé --- diff --git a/docs/fonts/stylesheet.css b/docs/css/fonts.css similarity index 60% rename from docs/fonts/stylesheet.css rename to docs/css/fonts.css index 1a06f22c35..214d324346 100644 --- a/docs/fonts/stylesheet.css +++ b/docs/css/fonts.css @@ -1,62 +1,62 @@ @font-face { font-family: 'LibvirtOverpass'; - src: url('overpass-regular.woff') format('woff'); + src: url('../fonts/overpass-regular.woff') format('woff'); font-weight: normal; font-style: normal; } @font-face { font-family: 'LibvirtOverpass'; - src: url('overpass-italic.woff') format('woff'); + src: url('../fonts/overpass-italic.woff') format('woff'); font-weight: normal; font-style: italic; } @font-face { font-family: 'LibvirtOverpass'; - src: url('overpass-bold.woff') format('woff'); + src: url('../fonts/overpass-bold.woff') format('woff'); font-weight: bold; font-style: normal; } @font-face { font-family: 'LibvirtOverpass'; - src: url('overpass-bold-italic.woff') format('woff'); + src: url('../fonts/overpass-bold-italic.woff') format('woff'); font-weight: bold; font-style: italic; } @font-face { font-family: 'LibvirtOverpassLight'; - src: url('overpass-light.woff') format('woff'); + src: url('../fonts/overpass-light.woff') format('woff'); font-weight: 300; font-style: normal; } @font-face { font-family: 'LibvirtOverpassLight'; - src: url('overpass-light-italic.woff') format('woff'); + src: url('../fonts/overpass-light-italic.woff') format('woff'); font-weight: 300; font-style: italic; } @font-face { font-family: 'LibvirtOverpassMono'; - src: url('overpass-mono-regular.woff') format('woff'); + src: url('../fonts/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'); + src: url('../fonts/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'); + src: url('../fonts/overpass-mono-light.woff') format('woff'); font-weight: 300; font-style: normal; } diff --git a/docs/css/main.css b/docs/css/main.css index 8961f1a4b4..88e453aca6 100644 --- a/docs/css/main.css +++ b/docs/css/main.css @@ -1,4 +1,4 @@ -@import url(../fonts/stylesheet.css); +@import url(fonts.css); @import url(generic.css); @import url(libvirt.css); @import url(mobile.css); diff --git a/docs/css/meson.build b/docs/css/meson.build index 35e56347a6..384f6e789f 100644 --- a/docs/css/meson.build +++ b/docs/css/meson.build @@ -1,4 +1,5 @@ docs_css_files = [ + 'fonts.css', 'generic.css', 'libvirt.css', 'main.css', diff --git a/docs/fonts/meson.build b/docs/fonts/meson.build index e4109c6e7d..53a060b972 100644 --- a/docs/fonts/meson.build +++ b/docs/fonts/meson.build @@ -1,6 +1,5 @@ fonts = [ 'LICENSE.rst', - 'stylesheet.css', 'overpass-bold-italic.woff', 'overpass-bold.woff', 'overpass-italic.woff',