LE POULET

This commit is contained in:
MasterAcnolo
2025-06-28 09:49:36 +02:00
parent 83b31cb645
commit f7abca90cb
8 changed files with 234 additions and 83 deletions

View File

@@ -0,0 +1,13 @@
.container {
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: #121212;
padding: 1em;
box-shadow: 0 2px 5px rgba(0,0,0,0.5);
z-index: 1000;
display: flex;
flex-direction: column;
align-items: center;
}

View File

@@ -0,0 +1,12 @@
#downloadStatus {
min-height: 1.5em; /* pour garder la place même vide */
font-weight: bold;
text-align: center;
color: #007bff;
}
label {
display: flex;
align-items: center;
font-size: 0.9em;
}

View File

@@ -0,0 +1,44 @@
form {
background-color: #fff;
padding: 2em;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
display: flex;
flex-direction: column;
width: 100%;
gap: 1em;
}
form input[type="text"],
form input[type="url"],
form select {
padding: 0.75em;
border: 1px solid #ccc;
border-radius: 8px;
}
form input[type="checkbox"] {
margin-right: 0.5em;
}
form button {
background-color: #007bff;
color: #fff;
border: none;
padding: 0.75em;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
form button:hover {
background-color: #0056b3;
}
form#downloadForm {
display: flex;
gap: 0.5em;
max-width: 600px;
width: 100%;
justify-content: center;
}

View File

@@ -1,3 +1,7 @@
@import url("layout/form.css");
@import url("layout/container.css");
@import url("layout/ctr-infos.css");
*{
margin: 0;
padding: 0;
@@ -5,6 +9,46 @@
}
body{
background-color:rgb(83, 83, 83) ;
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#downloadStatus {
margin-top: 0.5em;
font-weight: bold;
color: #eee;
min-height: 1.5em;
}
#videoInfo {
margin-top: 100px;
padding: 1em;
max-width: 600px;
margin-left: auto;
margin-right: auto;
border-radius: 8px;
color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
transition: opacity 0.5s ease, max-height 0.5s ease;
opacity: 0;
max-height: 0;
overflow: hidden;
}
#videoInfo.visible {
opacity: 1;
max-height: 1000px;
}
label {
display: flex;
align-items: center;
font-size: 0.9em;
}