Skip to content

Commit

Permalink
Deploying to gh-pages from @ c291e67 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
jherzstein committed Oct 18, 2024
1 parent d941a4e commit 9e36269
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
--color-a-hover: var(--dark-color-a-hover);
--switch-icon: var(--dark-switch-icon);

--monospace: 16px/1.5 "Lucida Console", Monaco, "Consolas", monospace;
/*--monospace: 16px/1.5 "Lucida Console", Monaco, "Consolas", monospace;*/
--monospace: 16px/1.5 'Roboto mono', monospace;
}

.light {
Expand All @@ -44,9 +45,27 @@
--switch-icon: var(--light-switch-icon);
}

/* roboto-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-mono-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
src: url('../fonts/roboto-mono-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
/* font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
font: 16px/1.5 'Roboto';
background:var(--color-bg);
color:var(--color-txt);
}
Expand Down
Binary file added fonts/roboto-mono-v23-latin-regular.woff2
Binary file not shown.
Binary file added fonts/roboto-v32-latin-regular.woff2
Binary file not shown.

0 comments on commit 9e36269

Please sign in to comment.