diff --git a/etoiles.png b/etoiles.png deleted file mode 100644 index 242e84c..0000000 Binary files a/etoiles.png and /dev/null differ diff --git a/fond.png b/fond.png deleted file mode 100644 index 07e11c9..0000000 Binary files a/fond.png and /dev/null differ diff --git a/full.pdn b/full.pdn deleted file mode 100644 index d06d9d2..0000000 Binary files a/full.pdn and /dev/null differ diff --git a/personnage1.png b/personnage1.png deleted file mode 100644 index b0be5bb..0000000 Binary files a/personnage1.png and /dev/null differ diff --git a/personnage2.png b/personnage2.png deleted file mode 100644 index 95bbb12..0000000 Binary files a/personnage2.png and /dev/null differ diff --git a/personnage3.png b/personnage3.png deleted file mode 100644 index 62ac9a7..0000000 Binary files a/personnage3.png and /dev/null differ diff --git a/personnages.png b/personnages.png deleted file mode 100644 index f3f4b0a..0000000 Binary files a/personnages.png and /dev/null differ diff --git a/photo.png b/photo.png deleted file mode 100644 index 610d129..0000000 Binary files a/photo.png and /dev/null differ diff --git a/public/assets/Logo.webp b/public/assets/Logo.webp deleted file mode 100644 index b41191e..0000000 Binary files a/public/assets/Logo.webp and /dev/null differ diff --git a/public/assets/bg.jpg b/public/assets/bg.jpg deleted file mode 100644 index 2881970..0000000 Binary files a/public/assets/bg.jpg and /dev/null differ diff --git a/public/assets/dust.webp b/public/assets/dust.webp deleted file mode 100644 index 993f01e..0000000 Binary files a/public/assets/dust.webp and /dev/null differ diff --git a/public/assets/foreground-back.webp b/public/assets/foreground-back.webp deleted file mode 100644 index 2349c19..0000000 Binary files a/public/assets/foreground-back.webp and /dev/null differ diff --git a/public/assets/foreground-front.webp b/public/assets/foreground-front.webp deleted file mode 100644 index d17a9b3..0000000 Binary files a/public/assets/foreground-front.webp and /dev/null differ diff --git a/public/assets/jax.webp b/public/assets/jax.webp deleted file mode 100644 index 679763b..0000000 Binary files a/public/assets/jax.webp and /dev/null differ diff --git a/public/assets/luna.webp b/public/assets/luna.webp deleted file mode 100644 index 61a164d..0000000 Binary files a/public/assets/luna.webp and /dev/null differ diff --git a/public/assets/manny.webp b/public/assets/manny.webp deleted file mode 100644 index c4e6a97..0000000 Binary files a/public/assets/manny.webp and /dev/null differ diff --git a/public/assets/rays.webp b/public/assets/rays.webp deleted file mode 100644 index 0e345ae..0000000 Binary files a/public/assets/rays.webp and /dev/null differ diff --git a/public/favicon.svg b/public/favicon.svg deleted file mode 100644 index 9698403..0000000 --- a/public/favicon.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/styles copy.css b/styles copy.css deleted file mode 100644 index dbdb209..0000000 --- a/styles copy.css +++ /dev/null @@ -1,171 +0,0 @@ -* { - padding: 0; - margin: 0; - box-sizing: border-box; -} - -html, -body { - width: 100%; - height: 100%; - color: black; - background-color: #FFEDE5; - font-family: Arial, Helvetica, sans-serif; - font-weight: 700; - overflow-x: hidden; - /* Empêche le scroll horizontal */ -} - -.navbar { - position: fixed; - top: 0; - left: 0; - width: 100%; - background-color: white; - height: 4rem; - z-index: 1000; -} - -nav { - float: right; - background-color: transparent; - height: 100%; -} - -nav a { - display: inline-block; - color: rgb(227, 195, 14); - padding: 18px 12px; - text-decoration: none; - transition: ease-in .3s; -} - -nav a:hover { - color: white; - background: #6aa9e895; - cursor: pointer; -} - -.wrapper { - padding-top: 12rem; - height: 100vh; - overflow-x: hidden; - overflow-y: auto; - perspective: 300px; - width: 100vw; - /* Force la largeur du viewport */ - overflow-x: hidden; -} - -.parallax__group { - position: relative; - height: 100vh; - width: 100vw; - transform-style: preserve-3d; -} - -.parallax__layer { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; -} - -.sky { - background-color: white; - background: url('fond.png') no-repeat; - background-size: contain; - transform: translateZ(-600px) scale(3); - z-index: 1; -} - -.bushes { - background: url('etoiles.png') no-repeat; - background-size: contain; - transform: translateZ(-525px) scale(2.75); - z-index: 2; -} - -.water { - background: url('texte.png') no-repeat; - background-size: contain; - transform: translateZ(-400px) scale(2.33333333); - z-index: 3; -} - -.people1 { - background: url("personnages.png") no-repeat; - background-size: contain; - transform: translateZ(-250px) scale(1.833333333); - z-index: 4; -} - -.info-container { - background-color: #FFEDE5; -} - -/* Style du menu hamburger */ -.menu-icon { - display: none; - /* Caché par défaut */ - flex-direction: column; - cursor: pointer; - position: absolute; - right: 1rem; - top: 1rem; - z-index: 1001; -} - -.menu-icon span { - background: rgb(227, 195, 14); - display: block; - height: 3px; - width: 25px; - margin: 5px 0; - transition: 0.3s; -} - -/* Masquer la case à cocher */ -#menu-toggle { - display: none; -} - - -@media screen and (min-width:760px) { - .sky, - .bushes, - .water, - .people1 { - background-size: contain; - /* Remplit toute la largeur */ - /*background-position: center; Centre les images */ - } -} - -@media screen and (max-width: 760px) { - .menu-icon { - display: flex; - } - - nav { - display: none; - flex-direction: column; - position: absolute; - top: 4rem; - left: 0; - width: 100%; - background: white; - text-align: center; - } - - /* Quand la case est cochée, afficher le menu */ - #menu-toggle:checked+.menu-icon+nav { - display: flex; - } - - nav a { - padding: 15px; - display: block; - } -} diff --git a/styles.css b/styles.css deleted file mode 100644 index dbdb209..0000000 --- a/styles.css +++ /dev/null @@ -1,171 +0,0 @@ -* { - padding: 0; - margin: 0; - box-sizing: border-box; -} - -html, -body { - width: 100%; - height: 100%; - color: black; - background-color: #FFEDE5; - font-family: Arial, Helvetica, sans-serif; - font-weight: 700; - overflow-x: hidden; - /* Empêche le scroll horizontal */ -} - -.navbar { - position: fixed; - top: 0; - left: 0; - width: 100%; - background-color: white; - height: 4rem; - z-index: 1000; -} - -nav { - float: right; - background-color: transparent; - height: 100%; -} - -nav a { - display: inline-block; - color: rgb(227, 195, 14); - padding: 18px 12px; - text-decoration: none; - transition: ease-in .3s; -} - -nav a:hover { - color: white; - background: #6aa9e895; - cursor: pointer; -} - -.wrapper { - padding-top: 12rem; - height: 100vh; - overflow-x: hidden; - overflow-y: auto; - perspective: 300px; - width: 100vw; - /* Force la largeur du viewport */ - overflow-x: hidden; -} - -.parallax__group { - position: relative; - height: 100vh; - width: 100vw; - transform-style: preserve-3d; -} - -.parallax__layer { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; -} - -.sky { - background-color: white; - background: url('fond.png') no-repeat; - background-size: contain; - transform: translateZ(-600px) scale(3); - z-index: 1; -} - -.bushes { - background: url('etoiles.png') no-repeat; - background-size: contain; - transform: translateZ(-525px) scale(2.75); - z-index: 2; -} - -.water { - background: url('texte.png') no-repeat; - background-size: contain; - transform: translateZ(-400px) scale(2.33333333); - z-index: 3; -} - -.people1 { - background: url("personnages.png") no-repeat; - background-size: contain; - transform: translateZ(-250px) scale(1.833333333); - z-index: 4; -} - -.info-container { - background-color: #FFEDE5; -} - -/* Style du menu hamburger */ -.menu-icon { - display: none; - /* Caché par défaut */ - flex-direction: column; - cursor: pointer; - position: absolute; - right: 1rem; - top: 1rem; - z-index: 1001; -} - -.menu-icon span { - background: rgb(227, 195, 14); - display: block; - height: 3px; - width: 25px; - margin: 5px 0; - transition: 0.3s; -} - -/* Masquer la case à cocher */ -#menu-toggle { - display: none; -} - - -@media screen and (min-width:760px) { - .sky, - .bushes, - .water, - .people1 { - background-size: contain; - /* Remplit toute la largeur */ - /*background-position: center; Centre les images */ - } -} - -@media screen and (max-width: 760px) { - .menu-icon { - display: flex; - } - - nav { - display: none; - flex-direction: column; - position: absolute; - top: 4rem; - left: 0; - width: 100%; - background: white; - text-align: center; - } - - /* Quand la case est cochée, afficher le menu */ - #menu-toggle:checked+.menu-icon+nav { - display: flex; - } - - nav a { - padding: 15px; - display: block; - } -} diff --git a/texte.png b/texte.png deleted file mode 100644 index d44b351..0000000 Binary files a/texte.png and /dev/null differ