diff --git a/src/components/OpenSource.astro b/src/components/OpenSource.astro
index a1f1c71..3d62349 100644
--- a/src/components/OpenSource.astro
+++ b/src/components/OpenSource.astro
@@ -31,9 +31,7 @@
Open Source
- I believe in open source as a form of sharing, networking between companies and training between developers.
-
- With open source, developers from all over the world collaborate on shared projects.
+ I believe in open source as a form of sharing, networking between companies and training between developers. With open source, developers from all over the world collaborate on shared projects.
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro
index a9a1db9..7e4fcfa 100644
--- a/src/layouts/BaseLayout.astro
+++ b/src/layouts/BaseLayout.astro
@@ -50,6 +50,7 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);
+
Skip to navigation
diff --git a/src/styles/global.css b/src/styles/global.css
index f422356..daa39c2 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -72,14 +72,19 @@
--form-element-focus-color: var(--primary-focus);
--switch-color: var(--primary-inverse);
--switch-checked-background-color: var(--primary);
- --font-family: 'Ubuntu', system-ui, -apple-system, "Segoe UI", "Roboto", "Ubuntu",
+ --font-family: 'Fira Code', 'Ubuntu', system-ui, -apple-system, "Segoe UI", "Roboto", "Ubuntu",
"Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol", "Noto Color Emoji";
}
body {
font-display: swap;
- font-family: 'Ubuntu', sans-serif;
+ font-family: var(--font-family, 'Fira Code'), sans-serif;
+}
+
+.headings>:last-child,
+hgroup>:last-child {
+ font-family: var(--font-family, 'Fira Code'), sans-serif !important;
}
::-moz-selection,
@@ -165,4 +170,15 @@ button:active {
main ul li {
list-style: circle;
+}
+
+code {
+ font-family: 'Fira Code', monospace;
+}
+
+@supports (font-variation-settings: normal) {
+
+ code {
+ font-family: 'Fira Code VF', monospace;
+ }
}
\ No newline at end of file