diff options
author | Andrew Gerrand <adg@golang.org> | 2016-11-16 15:49:10 +1100 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2016-11-17 02:13:51 +0000 |
commit | f7f61514f57a77b09f7260ae6a76f134bdc62690 (patch) | |
tree | 732a26233fe1c9ed339acb8cd3359a215f7862ac /static/fonts.css | |
parent | f4ed982331791bb33611d99b15517073ce675606 (diff) |
template: use Go font
These fonts are available under the usual license at
golang.org/x/image/font/gofont
Change-Id: Ifeb5c3478bc6752b75f1d1128d05141d7bc4a45e
Reviewed-on: https://go-review.googlesource.com/33259
Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'static/fonts.css')
-rw-r--r-- | static/fonts.css | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/static/fonts.css b/static/fonts.css new file mode 100644 index 0000000..5edf1fa --- /dev/null +++ b/static/fonts.css @@ -0,0 +1,69 @@ +@font-face { + font-family: 'Go'; + src: url('GoMedium-Italic.woff') format('woff'); + font-weight: 500; + font-style: italic; +} + +@font-face { + font-family: 'Go'; + src: url('Go-Italic.woff') format('woff'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'Go'; + src: url('Go-Bold.woff') format('woff'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'Go'; + src: url('GoMedium.woff') format('woff'); + font-weight: 500; + font-style: normal; +} + +@font-face { + font-family: 'Go'; + src: url('Go-BoldItalic.woff') format('woff'); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: 'Go'; + src: url('GoRegular.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Go Mono'; + src: url('GoMono-Bold.woff') format('woff'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'Go Mono'; + src: url('GoMono.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Go Mono'; + src: url('GoMono-Italic.woff') format('woff'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'Go Mono'; + src: url('GoMono-BoldItalic.woff') format('woff'); + font-weight: bold; + font-style: italic; +} |