Spaces:
Sleeping
Sleeping
File size: 1,493 Bytes
a20a7ca |
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
/* General Styles */
.stButton>button {
background-color: #4CAF50;
color: white;
padding: 0.5rem 1rem;
border-radius: 5px;
border: none;
transition: all 0.3s;
}
.stButton>button:hover {
background-color: #45a049;
transform: translateY(-2px);
}
/* Hero Section */
.hero-section {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
padding: 2rem;
border-radius: 10px;
margin: 2rem 0;
text-align: center;
}
/* Feature Cards */
.feature-card {
background: white;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 1rem 0;
text-align: center;
}
/* Results Display */
.confidence-meter {
background: #f0f0f0;
border-radius: 10px;
height: 20px;
position: relative;
margin: 1rem 0;
}
.meter-fill {
background: linear-gradient(90deg, #4CAF50, #45a049);
height: 100%;
border-radius: 10px;
transition: width 0.5s ease-in-out;
}
.result-card {
background: white;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 1rem 0;
text-align: center;
}
/* Probability Bars */
.prob-bar {
display: flex;
align-items: center;
margin: 0.5rem 0;
}
.bar {
flex-grow: 1;
height: 20px;
background: #f0f0f0;
margin: 0 1rem;
border-radius: 10px;
overflow: hidden;
}
.fill {
height: 100%;
background: #4CAF50;
transition: width 0.5s ease-in-out;
} |