Compare commits
4 Commits
9d5dbcb2de
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| b2e657498c | |||
| 7c534b1473 | |||
| 6fdfeb95aa | |||
| 8927b8878b |
4
.vscode/extensions.json
vendored
4
.vscode/extensions.json
vendored
@@ -25,6 +25,8 @@
|
|||||||
"nhoizey.gremlins",
|
"nhoizey.gremlins",
|
||||||
"s2junn.image-essentials",
|
"s2junn.image-essentials",
|
||||||
"shardulm94.trailing-spaces",
|
"shardulm94.trailing-spaces",
|
||||||
"esbenp.prettier-vscode"
|
"esbenp.prettier-vscode",
|
||||||
|
"wassim-k.rename-replace-extension",
|
||||||
|
"karenpommeroy.batch-rename"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -962,6 +962,13 @@ footer a:hover {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.missions .sidebyside {
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
max-width: 100%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
.missions section {
|
.missions section {
|
||||||
height: 40vh;
|
height: 40vh;
|
||||||
min-height: 200px;
|
min-height: 200px;
|
||||||
@@ -990,12 +997,12 @@ footer a:hover {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.missions section:nth-child(odd) article {
|
.missions section:nth-child(even) article {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
/* float: right; */
|
/* float: right; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.missions section:nth-child(even) article {
|
.missions section:nth-child(odd) article {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1003,7 +1010,7 @@ footer a:hover {
|
|||||||
max-width: 50%;
|
max-width: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.missions section:nth-child(odd)>article>p {
|
.missions section:nth-child(even)>article>p {
|
||||||
margin: auto 0 auto auto;
|
margin: auto 0 auto auto;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
@@ -1278,7 +1285,7 @@ footer a:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.credits header.introduction {
|
.credits header.introduction {
|
||||||
background: #13172c url("../images/ImagesCredits/Header.webp") center/cover fixed;
|
background: #13172c url("../images/imagesCredits/Header.webp") center/cover fixed;
|
||||||
background-position: top;
|
background-position: top;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
display: block;
|
display: block;
|
||||||
@@ -1375,7 +1382,7 @@ footer a:hover {
|
|||||||
/* AUTEUR: Jérémy Hébert */
|
/* AUTEUR: Jérémy Hébert */
|
||||||
/****************************/
|
/****************************/
|
||||||
.reponse {
|
.reponse {
|
||||||
background: #C19F8A url("../images/ImagesReponse/Merci.png") center;
|
background: #C19F8A url("../images/imagesReponse/Merci.png") center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: top;
|
background-position: top;
|
||||||
color: #ffefe5;
|
color: #ffefe5;
|
||||||
|
|||||||
@@ -14,16 +14,13 @@ function timerBlur(){
|
|||||||
document.getElementById('logoAccueil').style.filter = "blur(3px)";
|
document.getElementById('logoAccueil').style.filter = "blur(3px)";
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (count == 2)
|
else if (count == 2) {
|
||||||
{
|
|
||||||
document.getElementById('logoAccueil').style.filter = "blur(2px)";
|
document.getElementById('logoAccueil').style.filter = "blur(2px)";
|
||||||
}
|
}
|
||||||
else if (count == 1)
|
else if (count == 1) {
|
||||||
{
|
|
||||||
document.getElementById('logoAccueil').style.filter = "blur(1px)";
|
document.getElementById('logoAccueil').style.filter = "blur(1px)";
|
||||||
}
|
}
|
||||||
else if (count == 0)
|
else if (count == 0) {
|
||||||
{
|
|
||||||
document.getElementById('logoAccueil').style.filter = "";
|
document.getElementById('logoAccueil').style.filter = "";
|
||||||
clearInterval(timer2);
|
clearInterval(timer2);
|
||||||
}
|
}
|
||||||
@@ -35,13 +32,12 @@ function timerBlur(){
|
|||||||
function timerGlitch() {
|
function timerGlitch() {
|
||||||
var timer = setInterval(function () {
|
var timer = setInterval(function () {
|
||||||
curSrc = document.getElementById('logoAccueil').getAttribute('src');
|
curSrc = document.getElementById('logoAccueil').getAttribute('src');
|
||||||
if (curSrc == 'images/LogoALT-F4_Nav.svg') {
|
if (curSrc == 'images/logoALT-F4_Nav.svg') {
|
||||||
timerBlur();
|
timerBlur();
|
||||||
document.getElementById('logoAccueil').setAttribute('src', 'images/LogoAlt-F4_NavGlitch.svg')
|
document.getElementById('logoAccueil').setAttribute('src', 'images/logoAlt-F4_NavGlitch.svg')
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
document.getElementById('logoAccueil').setAttribute('src', 'images/logoALT-F4_Nav.svg')
|
||||||
document.getElementById('logoAccueil').setAttribute('src', 'images/LogoALT-F4_Nav.svg')
|
|
||||||
}
|
}
|
||||||
}, 2500);
|
}, 2500);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,8 +19,7 @@
|
|||||||
|
|
||||||
<body class="lore">
|
<body class="lore">
|
||||||
<nav>
|
<nav>
|
||||||
<a href="index.html" class="boutonAccueil"><img src="images/logoALT-F4_Nav.svg" alt="ALT-F4" id="logoAccueil"
|
<a href="index.html" class="boutonAccueil"><img src="images/logoALT-F4_Nav.svg" alt="ALT-F4" id="logoAccueil"></a>
|
||||||
</a>
|
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="aPropos.html">À propos</a></li>
|
<li><a href="aPropos.html">À propos</a></li>
|
||||||
|
|||||||
Reference in New Issue
Block a user