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;
}