edit: création des pages statut, sans interactivité pcq je comprends pas comment faire ^^

This commit is contained in:
2026-07-26 20:54:12 +02:00
parent 13b3b06d11
commit 79f51146c1
8 changed files with 213 additions and 36 deletions
+73
View File
@@ -0,0 +1,73 @@
:root {
--back-color: #FFFF4D;
--main-color: #000000;
}
/*======================= Page Statut LOL fermé ===*/
#lolIsClosed{
position: relative;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: var(--main-color);
}
#closedContainer{
width:100%;
height: 100%;
border-radius: 33px;
display:flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
section{
width: 333px;
height: 117px;
background-color: var(--back-color);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-top: 33px;
margin-top: -77px;
border-radius: 33px;
p{
padding: 0;
margin: 0;
text-transform: none;
font-size: 22px;
font-family: 'velvelyne';
font-weight: bold;
color: var(--main-color);
}
h3{
width: 277px;
height: 50px;
background-color: var(--main-color);
color: var(--back-color);
border-radius: 33px;
text-transform: uppercase;
text-align: center;
font-size: 33px;
font-family: 'karrik';
font-weight: normal;
padding: 0;
margin: 0;
padding-top: 7.77px;
}
}
}
+20 -1
View File
@@ -1 +1,20 @@
Fermé
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg" href="../assets/favicon.svg" />
<link rel="stylesheet" href="./closedStyle.css">
<link rel="stylesheet" href="../style/animation.css">
<link rel="stylesheet" href="/style/typo.css">
<title>Le LOL est Fermé ...</title>
</head>
<body id="lolIsClosed">
<main id="closedContainer">
<section>
<p>Le LOL est actuellement</p>
<h3 id="lolStatus">fermé ...</h3>
</section>
</main>
</body>
</html>
+11 -12
View File
@@ -1,20 +1,19 @@
<!DOCTYPE html>
<html lang="en" data-theme="open">
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg" href="/assets/favicon_open.svg" />
<style>
:root {
--back-color: #00FF44;
--main-color: #000000;
}
</style>
<link rel="icon" type="image/svg" href="../assets/favicon_open.svg" />
<link rel="stylesheet" href="./openStyle.css">
<link rel="stylesheet" href="../style/animation.css">
<title>Le LOL est Ouvert</title>
</head>
<body>
<main>
<p id="statusText">Ouvert !</p>
<body id="lolIsOpen">
<main id="openContainer">
<section>
<p>Le LOL est actuellement</p>
<h3 id="lolStatus">ouvert !</h3>
</section>
</main>
</body>
</html>
</html>
+69
View File
@@ -26,6 +26,75 @@
height: 120%;
}
/*======================= Page Statut LOL ouvert ===*/
#lolIsOpen{
position: relative;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: var(--main-color);
}
#openContainer{
width:100%;
height: 100%;
border-radius: 33px;
display:flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
section{
width: 333px;
height: 117px;
background-color: var(--back-color);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-top: 33px;
margin-top: -77px;
border-radius: 33px;
p{
padding: 0;
margin: 0;
text-transform: none;
font-size: 22px;
font-family: 'velvelyne';
font-weight: bold;
color: var(--main-color);
}
h3{
width: 277px;
height: 50px;
background-color: var(--main-color);
color: var(--back-color);
border-radius: 33px;
text-transform: uppercase;
text-align: center;
font-size: 33px;
font-family: 'karrik';
font-weight: normal;
padding: 0;
margin: 0;
padding-top: 7.77px;
}
}
}
#lolStatus{
animation: blink 3.33s infinite;
}