This commit is contained in:
whidix
2023-01-03 00:13:23 +01:00
parent fb0553912a
commit 35261a99a3
7 changed files with 54 additions and 4 deletions

BIN
src/lib/files/PPP.pdf Normal file

Binary file not shown.

View File

@@ -0,0 +1,7 @@
<script>
export let title;
</script>
<h1>{title}</h1>
<slot ></slot>

View File

@@ -53,7 +53,8 @@
display: flex; display: flex;
background-color: white; background-color: white;
justify-content: space-between; justify-content: space-between;
width: 80%; width: 100%;
max-width: 64rem;
margin: 0 auto; margin: 0 auto;
position: relative; position: relative;
top: 20px; top: 20px;
@@ -132,4 +133,14 @@
background-color: var(--color-bg-nav); background-color: var(--color-bg-nav);
border-radius: 5px; border-radius: 5px;
} }
@media (max-width: 600px) {
.header {
flex-direction: column;
}
.corner {
display: none;
}
}
</style> </style>

View File

@@ -42,5 +42,18 @@
max-width: 300px; max-width: 300px;
height: 100%; height: 100%;
border-radius: 5%; border-radius: 5%;
display: block;
margin: 0 auto;
}
@media (max-width: 768px) {
.hero {
flex-direction: column;
align-items: center;
}
.hero img {
max-width: 80%;
}
} }
</style> </style>

View File

@@ -7,8 +7,6 @@ tags:
- svelte - svelte
--- ---
# Internship report
During the year, I developed a website for a new association in Toulouse related to TISA (Toulouse, Computer Science, Security and Association). I developed this website using the Svelte framework because I was intrigued by its promise of performance and simplicity of development. During the year, I developed a website for a new association in Toulouse related to TISA (Toulouse, Computer Science, Security and Association). I developed this website using the Svelte framework because I was intrigued by its promise of performance and simplicity of development.
During this internship, I learned to use Svelte effectively and to set up a solid project architecture. I also had to work closely with the members of the association to understand their needs and vision for the website, in order to create a final product that met their expectations. During this internship, I learned to use Svelte effectively and to set up a solid project architecture. I also had to work closely with the members of the association to understand their needs and vision for the website, in order to create a final product that met their expectations.

View File

@@ -0,0 +1,20 @@
---
title: 👨‍💻 Projet Personnel Professionnel
date: 2022-12-31
description: PPP
tags:
---
<script>
import ppp from '$lib/files/PPP.pdf';
</script>
<iframe src={ppp} class="ppp"></iframe>
<style>
/* Display the iframe with a 16/9 ratio */
.ppp {
width: 100%;
height: 600px;
}
</style>

View File

@@ -10,7 +10,8 @@ const config = {
preprocess: [ preprocess: [
vitePreprocess(), vitePreprocess(),
mdsvex({ mdsvex({
extensions: ['.md'] extensions: ['.md'],
layout: "src/lib/mardown/Layout.svelte"
}) })
], ],