Skip to content

Commit

Permalink
adds missing italic font faces
Browse files Browse the repository at this point in the history
- there are some missing italic and bold font faces as described in ember-learn#335
- this adds the additional font faces and updates the version of existing font faces

Co-Authored-By: Chris Manson <[email protected]>
  • Loading branch information
jaredgalanis and mansona committed Sep 10, 2020
1 parent 5724f13 commit 30fcf27
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 8 deletions.
32 changes: 25 additions & 7 deletions addon/styles/typography.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,44 @@
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/fonts/Inter-Regular.woff2?v=3.11") format("woff2"),
url("/fonts/Inter-Regular.woff?v=3.11") format("woff");
src: url("/fonts/Inter-Regular.woff2?v=3.15") format("woff2"),
url("/fonts/Inter-Regular.woff?v=3.15") format("woff");
}

@font-face {
font-family: "Inter web";
font-style: normal;
font-weight: 600;
font-display: swap;
src: url("/fonts/Inter-SemiBold.woff2?v=3.11") format("woff2"),
url("/fonts/Inter-SemiBold.woff?v=3.11") format("woff");
src: url("/fonts/Inter-SemiBold.woff2?v=3.15") format("woff2"),
url("/fonts/Inter-SemiBold.woff?v=3.15") format("woff");
}

@font-face {
font-family: "Inter web";
font-style: normal;
font-weight: 200;
font-display: swap;
src: url("/fonts/Inter-ExtraLight-BETA.woff2?v=3.11") format("woff2"),
url("/fonts/Inter-ExtraLight-BETA.woff?v=3.11") format("woff");
src: url("/fonts/Inter-ExtraLight.woff2?v=3.15") format("woff2"),
url("/fonts/Inter-ExtraLight.woff?v=3.15") format("woff");
}

@font-face {
font-family: "Inter web";
font-style: italic;
font-weight: 400;
font-display: swap;
src: url("/fonts/Inter-Italic.woff2?v=3.15") format("woff2"),
url("/fonts/Inter-Italic.woff?v=3.15") format("woff");
}

@font-face {
font-family: "Inter web";
font-style: italic;
font-weight: 600;
font-display: swap;
src: url("/fonts/Inter-SemiBoldItalic.woff2?v=3.15") format("woff2"),
url("/fonts/Inter-SemiBoldItalic.woff?v=3.15") format("woff");
}

@font-face {
Expand All @@ -31,7 +49,7 @@
font-display: swap;
font-style: normal;
font-named-instance: "Regular";
src: url("/fonts/Inter-roman.var.woff2?v=3.11") format("woff2");
src: url("/fonts/Inter-roman.var.woff2?v=3.15") format("woff2");
}

.sans {
Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ You thought you got away with 3 headers, well you haven't seen nothin yet!
Will the headers never stop!?
Sometimes you just want to be **bold with your words**! But other times *you might feel a bit off center*.
Sometimes you just want to be **bold with your words**! But other times _you might feel a bit off center_. And if you're really bad you might feel **both at the _same_ time**
[Ember is the best framework](https://emberjs.com)
Expand Down
Binary file removed public/fonts/Inter-ExtraLight-BETA.woff
Binary file not shown.
Binary file removed public/fonts/Inter-ExtraLight-BETA.woff2
Binary file not shown.
Binary file added public/fonts/Inter-ExtraLight.woff
Binary file not shown.
Binary file added public/fonts/Inter-ExtraLight.woff2
Binary file not shown.
Binary file added public/fonts/Inter-Italic.woff
Binary file not shown.
Binary file added public/fonts/Inter-Italic.woff2
Binary file not shown.
Binary file modified public/fonts/Inter-Regular.woff
Binary file not shown.
Binary file modified public/fonts/Inter-Regular.woff2
Binary file not shown.
Binary file modified public/fonts/Inter-SemiBold.woff
Binary file not shown.
Binary file modified public/fonts/Inter-SemiBold.woff2
Binary file not shown.
Binary file added public/fonts/Inter-SemiBoldItalic.woff
Binary file not shown.
Binary file added public/fonts/Inter-SemiBoldItalic.woff2
Binary file not shown.
Binary file modified public/fonts/Inter-roman.var.woff2
Binary file not shown.

0 comments on commit 30fcf27

Please sign in to comment.