From c84750d2eedb6499aa68543b0c33f6288f428aba Mon Sep 17 00:00:00 2001 From: Romain de Laage Date: Thu, 30 Jan 2020 22:07:29 +0100 Subject: [PATCH] Ajout CV --- cv.html | 187 +++++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 5 +- style.css | 38 +++++++++++ 3 files changed, 228 insertions(+), 2 deletions(-) create mode 100644 cv.html diff --git a/cv.html b/cv.html new file mode 100644 index 0000000..1f32da4 --- /dev/null +++ b/cv.html @@ -0,0 +1,187 @@ + + + + Curriculum vitae - Romain de Laage + + + + + +
+

logoRomain de Laage

+
+

Curriculum vitae

+ + + + + + + + + + + + + + + + + +
Nomde Laage
PrénomRomain
Date de naissace21 novembre 2000
Adresse mailromain.delaage@rdelaage.ovh
+

Formation

+ + + + + + + + + + + + + + + + + + + + + +
EtablissementDescriptionPériode
LGT Gay-Lussac de ChaunyBaccalauréat scientifique SVT et spécialité ISN2015-2018
PSL - Henri IVCycle Pluridisciplinaire d'Etudes Supérieures - Sciences - arrêt avant obtention du diplôme (1 semestre)2018-2019
Université de Technologie de CompiègneTronc commun - période d'appronfondissement et d'élargissement des connaissances générales2019-ajd
+

Experience professionnelle

+ + + + + + + + + + + + + + + + +
OrganisationDescriptionPériode
Châssis-FranceStage ouvrier - employé polyvalent sur une chaîne de production (menuiserie, logistique, finition, ...)Juillet 2019
Université de Technologie de CompiègneActivités de promotion ponctuelles (salons, forums, lycées)17 et 18 janvier 2020
+

Experience bénévole

+ + + + + + + + + + + + + + + + +
OrganisationDescriptionPériode
AMVCCFigurant lors du spectacle son et lumière et des fêtes médiévales2015
PicasoftBénévole puis représentant administratif - activités de sensibilisation (radio, conférences, ateliers) - technique (docker)2019-ajd
+

Projets personnels

+ + + + + + + + + + + + + +
NomDescription
Borne d'arcadeProjet de borne d'arcade et émulation de consoles retro avec un ami - utilisation du raspberry pi 3 et de recalbox - informatique, linux, électronique
Hébergement et développement personnelDéveloppement de sites dynamiques personnels et administration d'un hébergement à la maison sur Ubuntu Server pour Raspberry pi 4
+

Langues

+ + + + + + + + + + + + + + + + + +
LangueNiveau
FrançaisLangue maternelle
AnglaisB1 UTC - Bon niveau, je suis capable de me débouiller à l'étranger et de tenir un conversation
EspagnolB2 UTC - Bon niveau, je suis capable de me débouiller à l'étranger et de tenir un conversation
+

Autres compétences

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CompétenceNiveau
Linux3
HTML5/CSS34
PHP3
JS1
C/C++3
Git3
XML/JSON3
SQL3
LaTeX/Beamer3
Python4
Pascal3
+
+ + diff --git a/index.html b/index.html index b06a8ea..4e4e222 100644 --- a/index.html +++ b/index.html @@ -11,9 +11,10 @@

logoRomain de Laage

@@ -27,7 +28,7 @@

Bienvenue sur mon espace personnel.

-

Vous pouvez retrouver mes hébérgements perso sur https://pi.rdelaage.ovh et mon CV ici

+

Vous pouvez retrouver mes hébérgements perso sur https://rdelaage.ovh et mon CV ici

diff --git a/style.css b/style.css index 4a1d141..206a346 100644 --- a/style.css +++ b/style.css @@ -80,3 +80,41 @@ section rect, section circle{ a{ color: #C0C0C0; } +table{ + border-collapse: separate; + border-spacing: 0; +} +table td, table th{ + border: solid #C0C0C0 1px; + border-bottom: none; + border-right: none; + padding: 10px; + transition: 0.3s; +} +tr:last-child td, tr:last-child th{ + border-bottom: solid #C0C0C0 1px; +} +td:last-child, th:last-child{ + border-right: solid #C0C0C0 1px; +} +tr:first-child td:first-child, tr:first-child th:first-child{ + border-radius: 15px 0 0 0; +} +tr:first-child td:last-child, tr:first-child th:last-child{ + border-radius: 0 15px 0 0; +} +tr:last-child td:last-child, tr:last-child th:last-child{ + border-radius: 0 0 15px 0; +} +tr:last-child td:first-child, tr:last-child th:first-child{ + border-radius: 0 0 0 15px; +} +tr:nth-child(2n) td, tr:nth-child(2n) th{ + background-color: rgba(255, 255, 255, 0.05); +} +tr:hover td, tr:hover th{ + background-color: rgba(255, 255, 255, 0.2); +} +tr:hover td:hover, tr:hover th:hover{ + background-color: rgba(255, 255, 255, 0.4); +}