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

Changes to Flyout Menus Approach 2 #534

Merged
merged 2 commits into from Aug 23, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Next Next commit
Replace FiraCode with FiraMono
Ligatures can be confusing if you’re not used to them. We leave Fira Code for users who have it installed (and understand ligatures) but everyone get Fira Code now.
  • Loading branch information
yatil committed Jun 28, 2017
commit 5cf5abad82d5d55714f25d8f4d1243fb101ce38e
Binary file removed source/fonts/firacode-regular.woff
Binary file not shown.
Binary file removed source/fonts/firacode-regular.woff2
Binary file not shown.
Binary file added source/fonts/firamono-regular.woff
Binary file not shown.
Binary file added source/fonts/firamono-regular.woff2
Binary file not shown.
4 changes: 2 additions & 2 deletions source/stylesheets/wai-act.scss
Expand Up @@ -29,7 +29,7 @@ $container_margin: 0.5%; // auto|px|% //
@include font-face("Noto Sans", font-files("notosans-italic.woff2", "notosans-italic.woff"), false, normal, italic);
@include font-face("Noto Sans", font-files("notosans-bold.woff2", "notosans-bold.woff"), false, bold);
@include font-face("Noto Sans", font-files("notosans-bolditalic.woff2", "notosans-bolditalic.woff"), false, bold, italic);
@include font-face("Fira Code", font-files("firacode-regular.woff2", "firacode-regular.woff"), false);
@include font-face("Fira Mono", font-files("firamono-regular.woff2", "firamono-regular.woff"), false);

.font-primary, .font-secondary {
font-family: "Trebuchet MS", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
Expand All @@ -40,7 +40,7 @@ $container_margin: 0.5%; // auto|px|% //

pre, code {
.fonts-loaded &{
font-family: "Fira Code", monospace;
font-family: "Fira Code","Fira Mono", monospace;
}
}

Expand Down