Skip to content
Snippets Groups Projects
Commit 0ba6aada authored by maeries's avatar maeries
Browse files

fixed competition page link color

parent f4b2d815
No related branches found
No related tags found
No related merge requests found
Pipeline #278429 passed
......@@ -98,14 +98,14 @@ def get_competition_page_html(self, competition_id):
height: auto;
}}
a {{<
a {{
color: black;
transition: color 0.3s ease;
}}
a:hover {{
color: {self.LINK_COLOR};
text-decoration: underline;
color: {self.LINK_COLOR_HOVER};
text-decoration: none;
}}
.summary-stats {{
......
......@@ -242,7 +242,7 @@ class EloSystem:
"""Generate static HTML website with Elo ratings and visualizations"""
# If num_processes not specified, use number of CPU cores
num_processes = int(mp.cpu_count() / 2)
num_processes = int(mp.cpu_count())
print(f"staring computation on {num_processes} cores")
pool = mp.Pool(processes=num_processes)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment