change font family to body

This commit is contained in:
Julien Calixte
2022-07-03 22:17:10 +02:00
parent 7c36d5b3d2
commit 7f72b9cb75
3 changed files with 17 additions and 5 deletions

1
components.d.ts vendored
View File

@@ -7,6 +7,7 @@ declare module 'vue' {
AboutMe: typeof import('./src/components/presentation/AboutMe.vue')['default'] AboutMe: typeof import('./src/components/presentation/AboutMe.vue')['default']
AppHeader: typeof import('./src/components/AppHeader.vue')['default'] AppHeader: typeof import('./src/components/AppHeader.vue')['default']
BlogPosts: typeof import('./src/components/posts/BlogPosts.vue')['default'] BlogPosts: typeof import('./src/components/posts/BlogPosts.vue')['default']
Island: typeof import('./node_modules/.pnpm/iles@0.7.40_sass@1.53.0/node_modules/iles/dist/client/app/components/Island.vue')['default']
JulienCalixte: typeof import('./src/components/core/JulienCalixte.vue')['default'] JulienCalixte: typeof import('./src/components/core/JulienCalixte.vue')['default']
ProductionFlow: typeof import('./src/components/flow/ProductionFlow.vue')['default'] ProductionFlow: typeof import('./src/components/flow/ProductionFlow.vue')['default']
Welcome: typeof import('./src/components/Welcome.vue')['default'] Welcome: typeof import('./src/components/Welcome.vue')['default']

View File

@@ -11,7 +11,7 @@ export default defineApp({
link: [ link: [
{ {
rel: "stylesheet", rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Fenix&family=Meow+Script&display=swap", href: "https://fonts.googleapis.com/css2?family=Gulzar&family=Meow+Script&display=swap",
}, },
], ],
}; };

View File

@@ -66,7 +66,7 @@ body {
background: var(--color-background); background: var(--color-background);
transition: color 0.5s, background-color 0.5s; transition: color 0.5s, background-color 0.5s;
line-height: 1.6; line-height: 1.6;
font-family: "Fenix", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, font-family: "Gulzar", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
serif; serif;
font-size: 22px; font-size: 22px;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
@@ -88,7 +88,18 @@ h6 {
color: var(--primary); color: var(--primary);
} }
.julien-calixte { h1 {
font-family: "Meow Script", "Lucida Sans", "Lucida Sans Regular", font-size: 1.8em;
"Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif; }
h2 {
font-size: 1.2em;
}
.julien-calixte {
font-family: "Meow Script", "Lucida Sans", "Lucida Sans Regular", Geneva, Verdana, sans-serif;
}
strong {
font-weight: bold;
} }