diff options
Diffstat (limited to 'views/default/css/elements/typography.php')
-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 { |