Spaces:
Sleeping
Sleeping
File size: 1,267 Bytes
7e95e5d 04c6a1c 7e95e5d f8e481f 7e95e5d 04c6a1c 7e95e5d f8e481f 7e95e5d f8e481f 7e95e5d f8e481f 04c6a1c 7e95e5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
/* General Styles */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #001C30;
}
.all {
background-color: #6bb1e0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
border-radius: 8px;
padding: 20px;
width: 550px; /* Increased width */
max-width: 90%; /* Ensures it fits on smaller screens */
color: #393737;
}
h1 {
text-align: center;
color: #001C30;
margin-bottom: 15px;
font-size: 1.5rem;
}
/* Form Styles */
.form-label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-control, select {
width: 100%;
padding: 8px; /* Reduced padding */
margin-bottom: 12px; /* Reduced margin */
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.btn-primary {
background-color: #0c010c;
color: #ffffff;
padding: 8px 12px; /* Reduced padding */
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn-primary:hover {
background-color: #045c91;
}
/* Prediction Result */
h2 {
text-align: center;
color: #001C30;
margin-top: 20px;
}
|