diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2014-06-04 10:57:49 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2014-06-04 10:58:52 +0200 |
commit | d1176f546aa621bd49e83977d24c2c5fc53bf00a (patch) | |
tree | 276b2691b746eb7cd11913218f3520e63b3f84ee /core/css/fonts.css | |
parent | 0ec3f1dd2d523c4ae337f5fb9d7a0517b1765810 (diff) | |
download | nextcloud-server-d1176f546aa621bd49e83977d24c2c5fc53bf00a.tar.gz nextcloud-server-d1176f546aa621bd49e83977d24c2c5fc53bf00a.zip |
move from tff to woff and fix IE8
Diffstat (limited to 'core/css/fonts.css')
-rw-r--r-- | core/css/fonts.css | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/core/css/fonts.css b/core/css/fonts.css index 01ecea73796..aa6e71bef21 100644 --- a/core/css/fonts.css +++ b/core/css/fonts.css @@ -1,11 +1,13 @@ @font-face { - font-family: 'OpenSans'; + font-family: 'Open Sans'; + font-style: normal; font-weight: normal; - src: url(../fonts/OpenSans-Regular.ttf); + src: local('Open Sans'), local('OpenSans'), url(../fonts/OpenSans-Regular.woff) format('woff'); } @font-face { - font-family: 'OpenSans'; + font-family: 'Open Sans'; + font-style: normal; font-weight: bold; - src: url(../fonts/OpenSans-Bold.ttf); + src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../fonts/OpenSans-Bold.woff) format('woff'); }
\ No newline at end of file |