From 824881d26e10c12bfe4031bd4e7034db1874dd3c Mon Sep 17 00:00:00 2001 From: James Allen Date: Wed, 23 Jul 2014 17:30:40 +0100 Subject: [PATCH] Update fonts to explicitly use web fonts for consistency --- services/web/public/stylesheets/app/homepage.less | 1 - services/web/public/stylesheets/core/variables.less | 7 +++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/services/web/public/stylesheets/app/homepage.less b/services/web/public/stylesheets/app/homepage.less index de418c6517..f0f540b5c6 100644 --- a/services/web/public/stylesheets/app/homepage.less +++ b/services/web/public/stylesheets/app/homepage.less @@ -24,7 +24,6 @@ p:first-of-type { font-size: @line-height-computed; font-weight: 200; - letter-spacing: 1px; margin-top: 0; text-rendering: auto; margin-bottom: @line-height-computed; diff --git a/services/web/public/stylesheets/core/variables.less b/services/web/public/stylesheets/core/variables.less index a856ed986c..5253724618 100755 --- a/services/web/public/stylesheets/core/variables.less +++ b/services/web/public/stylesheets/core/variables.less @@ -49,8 +49,11 @@ // //## Font, line-height, and color for body text, headings, and more. -@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif; -@font-family-serif: "PT Serif", Georgia, Times, serif; +@import url(//fonts.googleapis.com/css?family=PT+Serif:400,700); +@import url(//fonts.googleapis.com/css?family=Open+Sans:400,300); + +@font-family-sans-serif: "Open Sans", sans-serif; +@font-family-serif: "PT Serif", serif; //** Default monospace fonts for ``, ``, and `
`.
 @font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
 @font-family-base:        @font-family-sans-serif;