Jack Monas commited on
Commit
70db314
·
1 Parent(s): ffaf105
Files changed (1) hide show
  1. app.py +10 -35
app.py CHANGED
@@ -139,46 +139,21 @@ def main():
139
  unsafe_allow_html=True
140
  )
141
 
142
-
143
- # Inject custom CSS for the Rules section
144
- st.markdown(
145
- """
146
- <style>
147
- .rules-container {
148
- background-color: #f0f0f0;
149
- padding: 16px;
150
- border-radius: 8px;
151
- border: 1px solid #ccc;
152
- margin-bottom: 20px;
153
- }
154
- .rules-container ul {
155
- margin-left: 20px;
156
- padding-left: 0;
157
- }
158
- .rules-container li {
159
- margin-bottom: 8px;
160
- font-size: 18px;
161
- line-height: 1.4;
162
- }
163
- </style>
164
- """,
165
- unsafe_allow_html=True
166
- )
167
-
168
- # Use the custom container for the Rules section
169
- st.markdown('<div class="rules-container">', unsafe_allow_html=True)
170
- st.markdown("### Rules")
171
  st.markdown(
172
  """
173
- - **Rule 1:** Submissions must adhere to the provided guidelines.
174
- - **Rule 2:** Each team is allowed only one submission per challenge.
175
- - **Rule 3:** All code must be original and properly documented.
176
- - **Rule 4:** Late submissions will not be accepted.
 
 
 
 
 
177
  """,
178
  unsafe_allow_html=True
179
  )
180
- st.markdown('</div>', unsafe_allow_html=True)
181
-
182
 
183
  st.markdown("## FAQs")
184
 
 
139
  unsafe_allow_html=True
140
  )
141
 
142
+ st.markdown("## Rules")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  st.markdown(
144
  """
145
+ - **Submissions:** All entries must follow the provided guidelines and meet the deadlines.
146
+ - **Team Participation:** You can submit as an individual or as part of a team.
147
+ - **Points System:** Points are awarded for each challenge (Compression, Sampling, and Evaluation) as detailed in the Points Breakdown.
148
+ - **Final Ranking:** A team's overall rank is based on the total points accumulated from all challenges.
149
+ - **Tie-Breakers:** In the event of a tie, the following criteria will be used in order:
150
+ - Highest Evaluation Challenge score
151
+ - Highest Sampling Challenge score
152
+ - Highest Compression Challenge score
153
+ - **Conduct:** All participants must adhere to the code of conduct.
154
  """,
155
  unsafe_allow_html=True
156
  )
 
 
157
 
158
  st.markdown("## FAQs")
159