mirror of https://github.com/istio/istio.io.git
A couple site fixes.
- Enable compression options to shrink our HTML file sizes. I didn't realize the compressor had options when I added it a few weeks ago. Tweaking the options lets us get rid of more spaces, comments, and sundry other things. - Fix font weight of all table content on the site. Whereas normal page content has a weight of 300, table content was at 400 making it all look a little bolded. Now it's all 300.
This commit is contained in:
parent
7fcb1389dd
commit
af1425911e
|
|
@ -22,6 +22,13 @@ paginate_path: "/blog/page:num/"
|
|||
|
||||
excerpt_separator: <!--end_excerpt-->
|
||||
|
||||
compress_html:
|
||||
clippings: all
|
||||
comments: all
|
||||
endings: all
|
||||
blanklines: false
|
||||
profile: false
|
||||
|
||||
collections:
|
||||
docs:
|
||||
output: true
|
||||
|
|
|
|||
|
|
@ -44,3 +44,7 @@ p.lead {
|
|||
font-size: $font-size--m;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
td {
|
||||
font-weight: 300;
|
||||
}
|
||||
Loading…
Reference in New Issue