Push avant modif DIV INFO

This commit is contained in:
MasterAcnolo
2025-06-28 17:56:36 +02:00
parent f7abca90cb
commit 8b4b3c84e0
13 changed files with 249 additions and 28 deletions

View File

@@ -41,4 +41,33 @@ form#downloadForm {
max-width: 600px;
width: 100%;
justify-content: center;
}
}
.checkbox-inline {
display: flex;
align-items: center;
align-self: center;
gap: 0.5em;
}
#UrlInput {
padding: 0.75em 1em;
border-color: #ccc;
box-shadow: none;
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
background-color: #f9f9f9;
color: #333;
}
#UrlInput:focus {
border-color: #0056b3;
box-shadow: 0 0 5px rgba(0,123,255,0.4);
outline: none;
background-color: #fff;
}
#UrlInput::placeholder {
color: #aaa;
}