From 44f17a108ad6d3c2ab63233a43368d7a21fe98a3 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Thu, 17 Nov 2016 13:48:15 +1100 Subject: blog: fix serving of fonts on App Engine Change-Id: I4c1fc9b10440b8e99a04614d89ac1fe0db58ae68 Reviewed-on: https://go-review.googlesource.com/33260 Reviewed-by: Andrew Gerrand --- static/fonts.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'static/fonts.css') diff --git a/static/fonts.css b/static/fonts.css index 5edf1fa..62ca66e 100644 --- a/static/fonts.css +++ b/static/fonts.css @@ -1,69 +1,69 @@ @font-face { font-family: 'Go'; - src: url('GoMedium-Italic.woff') format('woff'); + src: url('fonts/GoMedium-Italic.woff') format('woff'); font-weight: 500; font-style: italic; } @font-face { font-family: 'Go'; - src: url('Go-Italic.woff') format('woff'); + src: url('fonts/Go-Italic.woff') format('woff'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Go'; - src: url('Go-Bold.woff') format('woff'); + src: url('fonts/Go-Bold.woff') format('woff'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Go'; - src: url('GoMedium.woff') format('woff'); + src: url('fonts/GoMedium.woff') format('woff'); font-weight: 500; font-style: normal; } @font-face { font-family: 'Go'; - src: url('Go-BoldItalic.woff') format('woff'); + src: url('fonts/Go-BoldItalic.woff') format('woff'); font-weight: bold; font-style: italic; } @font-face { font-family: 'Go'; - src: url('GoRegular.woff') format('woff'); + src: url('fonts/GoRegular.woff') format('woff'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Go Mono'; - src: url('GoMono-Bold.woff') format('woff'); + src: url('fonts/GoMono-Bold.woff') format('woff'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Go Mono'; - src: url('GoMono.woff') format('woff'); + src: url('fonts/GoMono.woff') format('woff'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Go Mono'; - src: url('GoMono-Italic.woff') format('woff'); + src: url('fonts/GoMono-Italic.woff') format('woff'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Go Mono'; - src: url('GoMono-BoldItalic.woff') format('woff'); + src: url('fonts/GoMono-BoldItalic.woff') format('woff'); font-weight: bold; font-style: italic; } -- cgit v1.2.3