Empereur / static /style.css
Empereur-Pirate's picture
Update static/style.css
a33d854 verified
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f5f5f5;
padding: 0 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
background-color: #fff;
border-radius: 4px;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}
h1 {
margin-top: 0;
color: #333;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
box-sizing: border-box;
}
button[type="submit"] {
margin-top: 10px;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button[type="submit"]:hover {
background-color: #0056b3;
}
#loader {
text-align: center;
margin-top: 20px;
}
.hidden {
display: none;
}
#loading-image {
width: 50px; /* Ajustez la largeur selon vos besoins */
height: auto;
}
#text-gen-output {
margin-top: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #f9f9f9;
}