Ajout des fichiers

This commit is contained in:
2025-01-17 22:35:22 +01:00
commit e4689a651d
5 changed files with 92 additions and 0 deletions

Binary file not shown.

Binary file not shown.

22
burguer.js Normal file
View File

@@ -0,0 +1,22 @@
var sidenav = document.getElementById("monSidenav");
var openBtn = document.getElementById("openBtn");
var closeBtn = document.getElementById("closeBtn");
openBtn.onclick = openNav;
closeBtn.onclick = closeNav;
/* Set the width of the side navigation to 250px */
function openNav() {
sidenav.classList.add("active");
for(let i = 0; i != 4; i++) {
boutons[i].style.display="block";
}
}
/* Set the width of the side navigation to 0 */
function closeNav() {
sidenav.classList.remove("active");
for(let i = 0; i != 4; i++) {
boutons[i].style.display="none";
}
}

46
cv_lukas.css Normal file
View File

@@ -0,0 +1,46 @@
@import url(https://db.onlinewebfonts.com/c/d7e8a95865396cddca89b00080d2cba6?family=SoDo+Sans+SemiBold);
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,700&family=Montserrat&family=Open+Sans:wght@300&family=Oswald&family=Playfair+Display:wght@500&display=swap');
div.all {
margin : 0 auto;
max-width: 1000px;
text-align: center;
width:100%;
justify-content: center;
text-align: center;
color: white;
font-family: "SoDo Sans SemiBold";
}
h1 {
padding-top: 20px;
padding-bottom: 20px;
background-color: darkgreen;
}
li {
border-radius: 25px;
background-color: gray;
flex-wrap: nowrap;
display: inline-flex;
justify-content: space-between;
font-size:smaller;
margin: 0 5px; /* Espacement entre les boutons */
padding: 10px;
background-color: darkslategrey;
border: none;
color: white;
font-size: 16px;
cursor: pointer;
}
ul {
justify-content: space-between;
list-style: none;
display: flex;
justify-content: space-between;
width: 100%;
padding: 10px 0;
}

24
cv_lukas.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV Responsive</title>
<link rel="stylesheet" href="site_cv.css">
</head>
<body>
<header>
<h1>Lukas SIMOES</h1>
</header>
<div class="container">
<div class="profile">
<h2>Télécharger le CV</h2>
<div>
<a href="CV_2024-12-11_Lukas_Simoes.pdf" download="CV_2024-12-11_Lukas_Simoes">Télécharger le fichier PDF</a>
</div>
</div>
</div>
</body>
</html>