cv skills
This commit is contained in:
parent
d9671ba442
commit
cbd0e25dc5
2 changed files with 53 additions and 2 deletions
24
css/cv.css
24
css/cv.css
|
@ -34,12 +34,10 @@ summary {
|
||||||
}
|
}
|
||||||
summary>:first-child {
|
summary>:first-child {
|
||||||
grid-column: 1;
|
grid-column: 1;
|
||||||
grid-row: 1;
|
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
summary>:last-child {
|
summary>:last-child {
|
||||||
grid-column: 2;
|
grid-column: 2;
|
||||||
grid-row: 1;
|
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
summary h3, summary p {
|
summary h3, summary p {
|
||||||
|
@ -67,3 +65,25 @@ details .place {
|
||||||
dl.ha > dt {
|
dl.ha > dt {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h3.skills {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
dl.skills {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
dl.skills {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 4fr;
|
||||||
|
}
|
||||||
|
dl.skills > dt {
|
||||||
|
font-weight: 800;
|
||||||
|
grid-column: 1;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
dl.skills > dd {
|
||||||
|
grid-column: 2;
|
||||||
|
}
|
||||||
|
dl.skills > * {
|
||||||
|
align-self: center;
|
||||||
|
}
|
|
@ -156,5 +156,36 @@
|
||||||
</dl>
|
</dl>
|
||||||
<hr>
|
<hr>
|
||||||
<h2>Skills</h2>
|
<h2>Skills</h2>
|
||||||
|
<h3 class="skills">Language</h3>
|
||||||
|
<dl class="skills">
|
||||||
|
<dt>French</dt>
|
||||||
|
<dd>Mother Tongue</dd>
|
||||||
|
<dt>English</dt>
|
||||||
|
<dd>C2 Level, Cambridge English Level 3 Certificate, Grade A</dd>
|
||||||
|
<dt>Scientific English</dt>
|
||||||
|
<dd>SWAP certification</dd>
|
||||||
|
<dt>German</dt>
|
||||||
|
<dd>B1 Level, Deutsches Sprachdiplom 1</dd>
|
||||||
|
</dl>
|
||||||
|
<h3 class="skills">Computer Science</h3>
|
||||||
|
<dl class="skills">
|
||||||
|
<dt>Web dev.</dt>
|
||||||
|
<dd>Extended knowledge of languages of the Web and major frameworks</dd>
|
||||||
|
<dt>Programming</dt>
|
||||||
|
<dd>Proficiency with Python, MatLab, CAST3M, C, C++ and the Qt Framework</dd>
|
||||||
|
<dt>Network</dt>
|
||||||
|
<dd>Comprehension of the functionning of complex network infrastructures</dd>
|
||||||
|
<dt>Miscellaneous</dt>
|
||||||
|
<dd>Mastery of LaTex, Microsoft Office, and collaborative editing tools</dd>
|
||||||
|
<dt>Virtual Reality</dt>
|
||||||
|
<dd>Experience with working with VR in Civil Engineering</dd>
|
||||||
|
</dl>
|
||||||
|
<h3 class="skills">Other</h3>
|
||||||
|
<dl class="skills">
|
||||||
|
<dt>Teamwork</dt>
|
||||||
|
<dd>Worked as part of a team on numerous projects</dd>
|
||||||
|
<dt>Electronics</dt>
|
||||||
|
<dd>Experience working with micro-controller boards (Arduino, Raspberry Pi), data acquisition and HMI.</dd>
|
||||||
|
</dl>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Reference in a new issue