diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-01 21:46:29 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-01 21:46:29 +0800 |
commit | cf22d3334225d791e0345164a0456cfcc86911ca (patch) | |
tree | ed582c54db6eb6eadf10c29b21ee6e47a650bdba | |
parent | fbc39656df1c61c93661565446abc378a7e2b869 (diff) | |
download | fg21sim-cf22d3334225d791e0345164a0456cfcc86911ca.tar.bz2 |
webui: fonts.css: Use semibold instead of bold for Source Sans Pro
-rw-r--r-- | fg21sim/webui/static/css/fonts.css | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fg21sim/webui/static/css/fonts.css b/fg21sim/webui/static/css/fonts.css index 8c7815a..e01f1a7 100644 --- a/fg21sim/webui/static/css/fonts.css +++ b/fg21sim/webui/static/css/fonts.css @@ -11,7 +11,7 @@ /** - * Source Sans Pro + * Source Sans Pro: Regular + Semibold */ @font-face { font-family: 'Source Sans Pro'; @@ -21,19 +21,19 @@ } @font-face { font-family: 'Source Sans Pro'; - src: url('../fonts/SourceSansPro-Bold.ttf.woff') format('woff'); - font-weight: bold; - font-style: normal; -} -@font-face { - font-family: 'Source Sans Pro'; src: url('../fonts/SourceSansPro-It.ttf.woff') format('woff'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Source Sans Pro'; - src: url('../fonts/SourceSansPro-BoldIt.ttf.woff') format('woff'); + src: url('../fonts/SourceSansPro-Semibold.ttf.woff') format('woff'); + font-weight: bold; + font-style: normal; +} +@font-face { + font-family: 'Source Sans Pro'; + src: url('../fonts/SourceSansPro-SemiboldIt.ttf.woff') format('woff'); font-weight: bold; font-style: italic; } |