Skip to content

Commit

Permalink
auto updating site
Browse files Browse the repository at this point in the history
  • Loading branch information
jherzstein committed Oct 18, 2024
1 parent 1472e02 commit c291e67
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
23 changes: 21 additions & 2 deletions public/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 public/fonts/roboto-mono-v23-latin-regular.woff2
Binary file not shown.
Binary file added public/fonts/roboto-v32-latin-regular.woff2
Binary file not shown.
1 change: 0 additions & 1 deletion themes/jugo/static/css/.#style.css

This file was deleted.

0 comments on commit c291e67

Please sign in to comment.