21 Commits

Author SHA1 Message Date
Hugo LAMY
cd97001cc0 update cvs and css 2026-03-15 15:38:17 +01:00
hugo LAMY
dfc4f55709 updated presentation text 2026-03-04 15:57:24 +01:00
hugo LAMY
2c8ae62e4b fix hero section 2026-03-04 15:54:51 +01:00
hugo LAMY
eacd26e532 adding cv header 2026-03-04 15:50:18 +01:00
hugo LAMY
8ac697b6e3 fix dot words alignment 2026-03-04 14:55:24 +01:00
hugo LAMY
f43afab585 update cv unfolded and mail is link 2026-03-04 14:41:01 +01:00
asus
0764207780 changed pdf name to avoid cach 2024-06-19 16:35:37 +02:00
asus
d040932217 new version of cvs 2024-06-19 15:32:07 +02:00
asus
c633026376 changed errors spoted by luck 2024-06-19 15:21:25 +02:00
asus
de4be9e248 added validator address in reamde 2024-06-15 11:48:40 +02:00
asus
b52842c254 small fixe on spaces in hero section 2024-06-08 12:08:58 +02:00
asus
5b1ea933f6 moved and add all cv into cvs 2024-06-08 11:22:59 +02:00
asus
ecabfcc392 removed htaccess content, it was not working as intended 2024-06-08 11:15:23 +02:00
asus
d9a6269f13 trying htaccess to prevent access to certain content 2024-06-08 11:13:53 +02:00
asus
c08dff5171 added margin auto to subtitle in hero and cv section 2024-06-07 23:32:58 +02:00
asus
0b55e2cdb3 removed the default open details 2024-06-07 23:29:00 +02:00
asus
9edec3714e added all cv section in both french and english, plus the phrase 2024-06-07 23:28:08 +02:00
asus
e27344b350 started to fill new content into cv 2024-06-06 12:14:58 +02:00
asus
d72c5ea2de changed hero title height from auto to 50vh to take more consistant space 2024-06-02 19:20:34 +02:00
asus
92b75b3239 reverse last commit to have the cv as a details on top hero section again 2024-06-02 19:17:17 +02:00
asus
2e03ec0ae9 Revert "fixed text error in download pdf"
to have the cv in hero section again

This reverts commit 69b111b1e2.
2024-06-02 19:15:58 +02:00
14 changed files with 791 additions and 332 deletions

10
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
// Use Prettier as the default formatter for HTML and CSS
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}

View File

@@ -1,4 +1,8 @@
html validator : https://validator.w3.org/nu
---
start it with a server, like : `alive-server` start it with a server, like : `alive-server`
- https://www.npmjs.com/package/alive-server - https://www.npmjs.com/package/alive-server
- install : `npm install -g alive-server` - install : `npm install -g alive-server`

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -1,15 +1,38 @@
.cv { #cv {
display: flex; header {
flex-direction: column; height: 300px;
width: auto; }
max-width: 900px;
margin-bottom: 100px;
text-align: left;
} }
.cv .cv_download { .cv {
display: inline-block; display: flex;
width: 100%; flex-direction: column;
margin-top: 30px; text-align: left;
text-align: center; width: auto;
max-width: 900px;
> *:last-child {
margin-bottom: 100px;
}
.cv_download {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 30px;
}
.banner {
margin: 0px 0px 50px;
}
h2 {
margin-top: 100px;
}
ul {
border: 1px dashed black;
padding: 20px;
padding-left: 40px;
}
} }

View File

@@ -1,15 +1,19 @@
#hero { #hero {
min-height: 100vh; min-height: 100vh;
grid-template-columns: 1fr auto 1fr; grid-template-columns: 1fr auto 1fr;
/* /*
* WIP : trying to find a solution to have both qualities : * WIP : trying to find a solution to have both qualities :
* - elements are spread across the page vertically ('hugo lamy developpeur' is not compacted on top) * - elements are spread across the page vertically ('hugo lamy developpeur' is not compacted on top)
* - the details element 'voir le cv' dont jump when we unroll it * - the details element 'voir le cv' don't jump when we unroll it
* *
grid-template-rows: 1fr auto 1fr; grid-template-rows: 1fr auto 1fr;
grid-template-rows: auto auto 1fr;
*/ */
grid-template-rows: 1fr 1fr auto; grid-template-rows: 50vh 1fr;
} }
#hero .subtitle { #hero .subtitle {
text-align: center; text-align: center;
display: inline-block;
max-width: 700px;
margin: 0px auto;
} }

View File

@@ -1,51 +1,59 @@
input#language { input#language {
display: none; display: none;
}
.language_label {
position: absolute;
grid-column: end;
top: 20px;
right: 20px;
padding: 10px;
cursor: pointer;
z-index: 1;
}
.language_label .flag {
width: 20px;
} }
label#language_label {
position: fixed;
top: 20px;
right: 20px;
padding: 10px;
cursor: pointer;
z-index: 1;
.flag {
width: 20px;
}
}
/* /*
* FR * SWITCH FLAG
*/ */
input#language:not(:checked) ~ * .language_label #fr { #language {
display: inline; &:not(:checked) + #language_label {
} #fr {
input#language:checked ~ * .language_label #fr { display: inline;
display: none; }
}
input#language:not(:checked) ~ * span.fr {
display: none;
}
input#language:checked ~ * span.fr {
display: inline;
}
#en {
display: none;
}
}
&:checked + #language_label {
#fr {
display: none;
}
#en {
display: inline;
}
}
}
/* /*
* EN * SWITCH LANGUAGE
*/ */
input#language:not(:checked) ~ * .language_label #en {
display: none; #language {
} ~ * .fr,
input#language:checked ~ * .language_label #en { ~ * .en {
display: inline; display: none;
} }
input#language:not(:checked) ~ * span.en {
display: inline; &:not(:checked) ~ * .en {
} display: inline;
input#language:checked ~ * span.en { }
display: none;
&:checked ~ * .fr {
display: inline;
}
} }

View File

@@ -1,6 +1,5 @@
section { section {
display: grid; display: grid;
position: relative;
margin: 0px; margin: 0px;
width: 100vw; width: 100vw;
grid-template-columns: auto auto auto; grid-template-columns: auto auto auto;