diff options
author | Sem <sembrestels@riseup.net> | 2012-08-17 01:50:31 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-08-17 01:50:31 +0200 |
commit | 869c2914d62decc719ab597a9049bd556c3f7997 (patch) | |
tree | 06c8b01950936e72a8492c4cb7660fe072319a4a /views/default/css | |
parent | 4da59d236e20bc9313ce4135aaa947a86e86e603 (diff) | |
download | saravea_theme-869c2914d62decc719ab597a9049bd556c3f7997.tar.gz saravea_theme-869c2914d62decc719ab597a9049bd556c3f7997.tar.bz2 |
Added Open Sans font family.
Diffstat (limited to 'views/default/css')
-rw-r--r-- | views/default/css/elements/typography.php | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/views/default/css/elements/typography.php b/views/default/css/elements/typography.php index 0da353f..ccd0a32 100644 --- a/views/default/css/elements/typography.php +++ b/views/default/css/elements/typography.php @@ -10,10 +10,24 @@ /* *************************************** Typography *************************************** */ +@font-face { + font-family: "Open Sans"; + font-style: normal; + font-weight: 400; + src: url("<?php echo elgg_get_site_url(); ?>/mod/n1_theme/vendors/opensans/OpenSans-Regular.ttf"); +} + +@font-face { + font-family: "Open Sans"; + font-style: bold; + src: url("<?php echo elgg_get_site_url(); ?>/mod/n1_theme/vendors/opensans/OpenSans-Bold.ttf"); + font-weight: 700; +} + body { - font-size: 85%; + font-size: 75%; line-height: 1.4em; - font-family: "Lucida Grande", Arial, Tahoma, Verdana, sans-serif; + font-family: "Open Sans", Arial, Tahoma, Verdana, sans-serif; } a { |