diff options
author | Owen Versteeg <stereotypicalapps@live.com> | 2012-08-06 17:04:25 -0300 |
---|---|---|
committer | Owen Versteeg <stereotypicalapps@live.com> | 2012-08-06 17:04:25 -0300 |
commit | 3ccf9a39e002e1496635159f7105a8f4e9389194 (patch) | |
tree | c39883b9f1e6e10236950209347067aac0025386 /css | |
parent | aca177cdf80fc3d6572576027055bb0bd503e823 (diff) | |
download | fosdem-2018-presentation-3ccf9a39e002e1496635159f7105a8f4e9389194.tar fosdem-2018-presentation-3ccf9a39e002e1496635159f7105a8f4e9389194.tar.gz |
added more font-face support
this way, more browsers are supported, like older Opera/Chrome/FF
Diffstat (limited to 'css')
-rw-r--r-- | css/main.css | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/css/main.css b/css/main.css index 12cec0a..d0b199c 100644 --- a/css/main.css +++ b/css/main.css @@ -11,10 +11,15 @@ *********************************************/ @font-face { - font-family: 'League Gothic'; - src: url('../lib/font/league_gothic-webfont.eot'); - src: url('../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), - url('../lib/font/league_gothic-webfont.ttf') format('truetype'); + font-family: 'League Gothic'; + src: url('../lib/font/league_gothic-webfont-webfont.eot'); + src: url('../lib/font/league_gothic-webfont-webfont.eot?#iefix') format('embedded-opentype'), + url('../lib/font/league_gothic-webfont-webfont.woff') format('woff'), + url('../lib/font/league_gothic-webfont-webfont.ttf') format('truetype'), + url('../lib/font/league_gothic-webfont-webfont.svg#LeagueGothicRegular') format('svg'); + font-weight: normal; + font-style: normal; + font-weight: normal; font-style: normal; } |