ml_project/static/style.css
User Name 95826b438c init
2025-06-07 23:27:56 +02:00

98 lines
1.6 KiB
CSS

/* style.css */
body {
font-family: 'Arial', sans-serif;
background-color: #f4f7fa;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
width: 80%;
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1, h2 {
text-align: center;
color: #333;
}
p {
text-align: center;
color: #555;
font-size: 18px;
}
a {
display: block;
text-align: center;
margin-top: 20px;
padding: 10px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 18px;
}
a:hover {
background-color: #0056b3;
}
form {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
label {
font-size: 18px;
margin-bottom: 10px;
color: #333;
}
input[type="number"] {
padding: 10px;
width: 100%;
max-width: 250px;
margin-bottom: 20px;
border: 2px solid #ddd;
border-radius: 5px;
font-size: 16px;
}
button {
padding: 10px 20px;
background-color: #28a745;
color: white;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
}
button:hover {
background-color: #218838;
}
h2 {
margin-top: 20px;
color: #333;
font-size: 24px;
}
#predicted_score {
font-weight: bold;
color: #007bff;
}