Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
Supply CSS fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
lightswitch05 committed Dec 26, 2019
1 parent 91750b4 commit 38b848b
Show file tree
Hide file tree
Showing 19 changed files with 50 additions and 1 deletion.
Binary file added docs/fonts/LatoLatin-Bold.eot
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Bold.ttf
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Bold.woff
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Bold.woff2
Binary file not shown.
Binary file added docs/fonts/LatoLatin-BoldItalic.eot
Binary file not shown.
Binary file added docs/fonts/LatoLatin-BoldItalic.ttf
Binary file not shown.
Binary file added docs/fonts/LatoLatin-BoldItalic.woff
Binary file not shown.
Binary file added docs/fonts/LatoLatin-BoldItalic.woff2
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Italic.eot
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Italic.ttf
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Italic.woff
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Italic.woff2
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Regular.eot
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Regular.ttf
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Regular.woff
Binary file not shown.
Binary file added docs/fonts/LatoLatin-Regular.woff2
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
body {
color: #d9d9d9;
background-color: #212121;
font-family: Lato, Helvetica, sans-serif;
font-family: LatoLatinWeb, Lato, Arial, sans-serif;

max-width: 960px;
margin-left: auto;
Expand Down
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<title>Hostfile blocklist for ads and tracking</title>
<meta name="description" content="Hostfile blocklist for ads and tracking">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="latolatinfonts.css.css">
<meta name="viewport" content="width=device-width">
<link rel="icon" href="favicon.ico">
</head>
Expand Down
48 changes: 48 additions & 0 deletions docs/latolatinfonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/* Webfont: LatoLatin-Bold */@font-face {
font-family: 'LatoLatinWeb';
src: url('fonts/LatoLatin-Bold.eot'); /* IE9 Compat Modes */
src: url('fonts/LatoLatin-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/LatoLatin-Bold.woff2') format('woff2'), /* Modern Browsers */
url('fonts/LatoLatin-Bold.woff') format('woff'), /* Modern Browsers */
url('fonts/LatoLatin-Bold.ttf') format('truetype');
font-style: normal;
font-weight: bold;
text-rendering: optimizeLegibility;
}

/* Webfont: LatoLatin-BoldItalic */@font-face {
font-family: 'LatoLatinWeb';
src: url('fonts/LatoLatin-BoldItalic.eot'); /* IE9 Compat Modes */
src: url('fonts/LatoLatin-BoldItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/LatoLatin-BoldItalic.woff2') format('woff2'), /* Modern Browsers */
url('fonts/LatoLatin-BoldItalic.woff') format('woff'), /* Modern Browsers */
url('fonts/LatoLatin-BoldItalic.ttf') format('truetype');
font-style: italic;
font-weight: bold;
text-rendering: optimizeLegibility;
}


/* Webfont: LatoLatin-Italic */@font-face {
font-family: 'LatoLatinWeb';
src: url('fonts/LatoLatin-Italic.eot'); /* IE9 Compat Modes */
src: url('fonts/LatoLatin-Italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/LatoLatin-Italic.woff2') format('woff2'), /* Modern Browsers */
url('fonts/LatoLatin-Italic.woff') format('woff'), /* Modern Browsers */
url('fonts/LatoLatin-Italic.ttf') format('truetype');
font-style: italic;
font-weight: normal;
text-rendering: optimizeLegibility;
}

/* Webfont: LatoLatin-Regular */@font-face {
font-family: 'LatoLatinWeb';
src: url('fonts/LatoLatin-Regular.eot'); /* IE9 Compat Modes */
src: url('fonts/LatoLatin-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/LatoLatin-Regular.woff2') format('woff2'), /* Modern Browsers */
url('fonts/LatoLatin-Regular.woff') format('woff'), /* Modern Browsers */
url('fonts/LatoLatin-Regular.ttf') format('truetype');
font-style: normal;
font-weight: normal;
text-rendering: optimizeLegibility;
}

0 comments on commit 38b848b

Please sign in to comment.