60 lines
874 B
CSS
60 lines
874 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.container {
|
|
width: 80%;
|
|
margin: auto;
|
|
padding: 20px;
|
|
background: white;
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
|
|
h2 {
|
|
color: #555;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.form-section, .prediction-section {
|
|
margin-top: 30px;
|
|
padding: 20px;
|
|
background: #fafafa;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
input {
|
|
width: 100px;
|
|
padding: 8px;
|
|
margin: 5px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
button {
|
|
margin-top: 15px;
|
|
padding: 10px 20px;
|
|
background: #007bff;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background: #0056b3;
|
|
}
|
|
|
|
canvas {
|
|
margin-top: 20px;
|
|
width: 100%;
|
|
}
|