LakshmiHarika commited on
Commit
d2d9cb5
·
verified ·
1 Parent(s): 8f01f62

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: #F8F9FA; /* Light background */
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
- position: relative;
85
- width: 20px;
86
- height: 20px;
87
- margin: 10px 0;
88
- font-size: 24px;
89
- color: #000000; /* Black arrow */
 
 
90
  }
91
 
92
- /* Custom light colors for each phase */
93
- .phase-1 { background-color: #E6F4EA; } /* Light Green */
94
- .phase-2 { background-color: #E0F7FA; } /* Light Blue */
95
- .phase-3 { background-color: #FFF9C4; } /* Light Yellow */
96
- .phase-4 { background-color: #FFE0B2; } /* Light Orange */
97
- .phase-5 { background-color: #DCEDC8; } /* Light Green */
98
- .phase-6 { background-color: #D1C4E9; } /* Light Purple */
99
- .phase-7 { background-color: #F8BBD0; } /* Light Pink */
100
- .phase-8 { background-color: #CFD8DC; } /* Light Gray-Blue */
101
- .phase-9 { background-color: #B2EBF2; } /* Light Cyan */
102
- .phase-10 { background-color: #FFE082; } /* Light Amber */
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);