Add optional woff2 versions of FiraSans.
For browsers that support woff2 (most modern ones: https://caniuse.com/woff2), this offers a reduction in download size for these two fonts from 362k to 257k (32% reduction). It decreases the total page size for `struct.String.html` (counting all subresources) by about 2.5%. If this is interesting, I'm happy to apply the same treatment to the other fonts, but these two are the biggest.
This commit is contained in:
parent
9b471a3f5f
commit
c47903f063
BIN
src/librustdoc/html/static/FiraSans-Medium.woff2
Normal file
BIN
src/librustdoc/html/static/FiraSans-Medium.woff2
Normal file
Binary file not shown.
BIN
src/librustdoc/html/static/FiraSans-Regular.woff2
Normal file
BIN
src/librustdoc/html/static/FiraSans-Regular.woff2
Normal file
Binary file not shown.
@ -3,13 +3,17 @@
|
||||
font-family: 'Fira Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Fira Sans'), url("FiraSans-Regular.woff") format('woff');
|
||||
src: local('Fira Sans'),
|
||||
url("FiraSans-Regular.woff2") format("woff2"),
|
||||
url("FiraSans-Regular.woff") format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Fira Sans';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
src: local('Fira Sans Medium'), url("FiraSans-Medium.woff") format('woff');
|
||||
src: local('Fira Sans Medium'),
|
||||
url("FiraSans-Medium.woff2") format("woff2"),
|
||||
url("FiraSans-Medium.woff") format('woff');
|
||||
}
|
||||
|
||||
/* See SourceSerifPro-LICENSE.txt for the Source Serif Pro license. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user