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): ...@@ -98,14 +98,14 @@ def get_competition_page_html(self, competition_id):
height: auto; height: auto;
}} }}
a {{< a {{
color: black; color: black;
transition: color 0.3s ease; transition: color 0.3s ease;
}} }}
a:hover {{ a:hover {{
color: {self.LINK_COLOR}; color: {self.LINK_COLOR_HOVER};
text-decoration: underline; text-decoration: none;
}} }}
.summary-stats {{ .summary-stats {{
......
...@@ -242,7 +242,7 @@ class EloSystem: ...@@ -242,7 +242,7 @@ class EloSystem:
"""Generate static HTML website with Elo ratings and visualizations""" """Generate static HTML website with Elo ratings and visualizations"""
# If num_processes not specified, use number of CPU cores # 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") print(f"staring computation on {num_processes} cores")
pool = mp.Pool(processes=num_processes) pool = mp.Pool(processes=num_processes)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment