Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#93 Change base font family to Source Sans Pro #99

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Change base font family to Source Sans Pro
  • Loading branch information
wtee committed Apr 29, 2018
commit eda519c13bed2a59950993946af437207dd77413
2 changes: 1 addition & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
<link rel="icon" type="image/png" href="{{ "/images/favicon.ico" | prepend: site.url }}">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet">
<link rel="stylesheet" href="{{ "/css/foundation.css" | prepend: site.url }}">
<link rel="stylesheet" href="{{ "/css/style.css" | prepend: site.url }}">
<link rel="stylesheet" href="{{ "/css/d4d.css" | prepend: site.url }}">
Expand All @@ -28,7 +29,6 @@
});
})(Tc.$);
</script>
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700,300" media="screen" rel="stylesheet" type="text/css" />
<script src="{{ "/javascripts/masonry.pkgd.js" | prepend: site.url }}" type="text/javascript"></script>
<script src="{{ "/javascripts/imagesloaded.pkgd.min.js" | prepend: site.url }}" type="text/javascript"></script>
<script src="{{ "/javascripts/slick.min.js" | prepend: site.url }}" type="text/javascript"></script>
Expand Down
2 changes: 1 addition & 1 deletion _sass/foundation/_settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ $row-width: rem-calc(1120);
// - - - - - - - - - - - - - - - - - - - - - - - - -

// We use these to define default font stacks
$font-family-sans-serif: Raleway, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
$font-family-sans-serif: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
// $font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif;
// $font-family-monospace: Consolas, "Liberation Mono", Courier, monospace;

Expand Down