Skip to content

Commit

Permalink
Merge pull request #21 from SolarizedRed/main
Browse files Browse the repository at this point in the history
Quick Start PDF fonts
  • Loading branch information
Savantford committed Aug 12, 2023
2 parents 20bb793 + ff84af4 commit 84ae887
Show file tree
Hide file tree
Showing 9 changed files with 58 additions and 1 deletion.
6 changes: 6 additions & 0 deletions attributions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Attributions for assets used in the system
All credits to the original authors.

Fonts
- <a href="https://www.dafont.com/queen.font" title="queen font">Queen font created by Peter Olexa - dafont</a>
- <a href="https://fonts.adobe.com/fonts/garamond-premier" title="garamond premier font">Garamond Premier font created by Robert Slimbach - Adobe Fonts</a>
Binary file added fonts/Adobe Garamond Pro Bold Italic.ttf
Binary file not shown.
Binary file added fonts/Adobe Garamond Pro Bold.ttf
Binary file not shown.
Binary file added fonts/Adobe Garamond Pro Italic.ttf
Binary file not shown.
Binary file added fonts/Adobe Garamond Pro Regular.ttf
Binary file not shown.
Binary file added fonts/Adobe Garamond Pro Semibold Italic.ttf
Binary file not shown.
Binary file added fonts/QueenInlineGrunge.ttf
Binary file not shown.
43 changes: 43 additions & 0 deletions styles/utils/_typography.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
@font-face {
font-family: 'Garamond Pro';
src: url('fonts/Adobe Garamond Pro Regular.ttf') format('truetype'),
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Garamond Pro';
src: url('fonts/Adobe Garamond Pro Bold.ttf') format('truetype'),
font-weight: bold;
font-style: normal;
}

@font-face {
font-family: 'Garamond Pro';
src: url('fonts/Adobe Garamond Pro Bold Italic.ttf') format('truetype'),
font-weight: bold;
font-style: italic;
}

@font-face {
font-family: 'Garamond Pro';
src: url('fonts/Adobe Garamond Pro Italic.ttf') format('truetype'),
font-weight: normal;
font-style: italic;
}

@font-face {
font-family: 'Queen Inline';
src: url('fonts/QueenInlineGrunge.ttf') format('truetype'),
font-weight: normal;
font-style: normal;
}

$font-primary: 'Garamond Pro', serif;
$font-header: 'Queen Inline', serif;
$base-font-size: 12px;

//@font-face {
// font-family: 'Gotham Book';
// src: url('../fonts/GothamBook Regular.otf') format('opentype');
//}
10 changes: 9 additions & 1 deletion styles/weirdwizard.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 84ae887

Please sign in to comment.