Spaces:
Sleeping
Sleeping
Update pages/3Life Cycle of Machine Learning Project.py
Browse files
pages/3Life Cycle of Machine Learning Project.py
CHANGED
|
@@ -65,7 +65,7 @@ st.markdown(
|
|
| 65 |
position: relative;
|
| 66 |
width: 300px; /* Rectangle width */
|
| 67 |
height: 60px; /* Rectangle height */
|
| 68 |
-
background-color: #
|
| 69 |
color: #000000; /* Black text */
|
| 70 |
border-radius: 8px; /* Rounded edges */
|
| 71 |
display: flex;
|
|
@@ -81,25 +81,27 @@ st.markdown(
|
|
| 81 |
|
| 82 |
/* Arrow styling */
|
| 83 |
.arrow {
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
|
|
|
|
|
|
| 90 |
}
|
| 91 |
|
| 92 |
-
/* Custom
|
| 93 |
-
.phase-1 { background-color: #
|
| 94 |
-
.phase-2 { background-color: #
|
| 95 |
-
.phase-3 { background-color: #
|
| 96 |
-
.phase-4 { background-color: #
|
| 97 |
-
.phase-5 { background-color: #
|
| 98 |
-
.phase-6 { background-color: #
|
| 99 |
-
.phase-7 { background-color: #
|
| 100 |
-
.phase-8 { background-color: #
|
| 101 |
-
.phase-9 { background-color: #
|
| 102 |
-
.phase-10 { background-color: #
|
| 103 |
|
| 104 |
.phase:hover {
|
| 105 |
transform: scale(1.05);
|
|
|
|
| 65 |
position: relative;
|
| 66 |
width: 300px; /* Rectangle width */
|
| 67 |
height: 60px; /* Rectangle height */
|
| 68 |
+
background-color: #E0E0E0; /* Neutral light background */
|
| 69 |
color: #000000; /* Black text */
|
| 70 |
border-radius: 8px; /* Rounded edges */
|
| 71 |
display: flex;
|
|
|
|
| 81 |
|
| 82 |
/* Arrow styling */
|
| 83 |
.arrow {
|
| 84 |
+
width: 40px;
|
| 85 |
+
height: 40px;
|
| 86 |
+
display: flex;
|
| 87 |
+
justify-content: center;
|
| 88 |
+
align-items: center;
|
| 89 |
+
font-size: 24px; /* Larger arrow size */
|
| 90 |
+
color: #4F4F4F; /* Neutral dark arrow color */
|
| 91 |
+
margin: 10px 0; /* Space for arrow */
|
| 92 |
}
|
| 93 |
|
| 94 |
+
/* Custom slightly darker colors for each phase */
|
| 95 |
+
.phase-1 { background-color: #D4ECDD; } /* Slightly darker green */
|
| 96 |
+
.phase-2 { background-color: #CDE7F0; } /* Slightly darker blue */
|
| 97 |
+
.phase-3 { background-color: #FFF4B3; } /* Slightly darker yellow */
|
| 98 |
+
.phase-4 { background-color: #FFD8A8; } /* Slightly darker orange */
|
| 99 |
+
.phase-5 { background-color: #CCE1B5; } /* Slightly darker light green */
|
| 100 |
+
.phase-6 { background-color: #C2B9DA; } /* Slightly darker purple */
|
| 101 |
+
.phase-7 { background-color: #F2A2B7; } /* Slightly darker pink */
|
| 102 |
+
.phase-8 { background-color: #BAC6CF; } /* Slightly darker gray-blue */
|
| 103 |
+
.phase-9 { background-color: #9FD5DC; } /* Slightly darker cyan */
|
| 104 |
+
.phase-10 { background-color: #FFD572; } /* Slightly darker amber */
|
| 105 |
|
| 106 |
.phase:hover {
|
| 107 |
transform: scale(1.05);
|