change layout and code font familyt

This commit is contained in:
Julien Calixte
2022-12-06 23:10:51 +01:00
parent 3cbef2fc35
commit eb9f74ecb9
4 changed files with 20 additions and 7 deletions

11
components.d.ts vendored
View File

@@ -1,8 +1,11 @@
// generated by unplugin-vue-components // generated by unplugin-vue-components
// We suggest you to commit this file into source control // We suggest you to commit this file into source control
// Read more: https://github.com/vuejs/vue-next/pull/3399 // Read more: https://github.com/vuejs/core/pull/3399
import '@vue/runtime-core'
declare module 'vue' { export {}
declare module '@vue/runtime-core' {
export interface GlobalComponents { export interface GlobalComponents {
AboutMe: typeof import('./src/components/presentation/about-me.vue')['default'] AboutMe: typeof import('./src/components/presentation/about-me.vue')['default']
AppHeader: typeof import('./src/components/app-header.vue')['default'] AppHeader: typeof import('./src/components/app-header.vue')['default']
@@ -13,8 +16,8 @@ declare module 'vue' {
MyBooks: typeof import('./src/components/presentation/my-books.vue')['default'] MyBooks: typeof import('./src/components/presentation/my-books.vue')['default']
MyProjects: typeof import('./src/components/presentation/my-projects.vue')['default'] MyProjects: typeof import('./src/components/presentation/my-projects.vue')['default']
ProductionFlow: typeof import('./src/components/flow/ProductionFlow.vue')['default'] ProductionFlow: typeof import('./src/components/flow/ProductionFlow.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
Welcome: typeof import('./src/components/Welcome.vue')['default'] Welcome: typeof import('./src/components/Welcome.vue')['default']
} }
} }
export { }

View File

@@ -36,6 +36,8 @@
--section-gap: 160px; --section-gap: 160px;
--primary: hsl(229, 90%, 28%); --primary: hsl(229, 90%, 28%);
--code-font-family: "Cousine", monospace;
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
@@ -66,7 +68,7 @@ body {
color: var(--color-text); color: var(--color-text);
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.3;
font-family: "Gulzar", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, font-family: "Gulzar", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
serif; serif;
font-size: 22px; font-size: 22px;
@@ -104,3 +106,7 @@ h2 {
strong { strong {
font-weight: bold; font-weight: bold;
} }
code {
font-family: var(--code-font-family);
}

View File

@@ -42,7 +42,7 @@ withDefaults(defineProps<Props>(), {
padding: 1rem; padding: 1rem;
margin: 1rem 0; margin: 1rem 0;
border-radius: 15px; border-radius: 15px;
font-family: 'Cousine', monospace; font-family: var(--code-font-family);
hr { hr {
margin-bottom: 1rem; margin-bottom: 1rem;

View File

@@ -20,7 +20,7 @@ const { frontmatter } = usePage()
} }
article#main-article { article#main-article {
max-width: 680px; max-width: 740px;
margin: auto; margin: auto;
padding: 1rem; padding: 1rem;
text-align: justify; text-align: justify;
@@ -40,6 +40,10 @@ h7 {
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
p {
margin-bottom: 1rem;
}
img { img {
width: 100%; width: 100%;
max-height: 40vh; max-height: 40vh;