diff --git a/WebHostLib/static/styles/tracker.css b/WebHostLib/static/styles/tracker.css index 022b493b..c59dd604 100644 --- a/WebHostLib/static/styles/tracker.css +++ b/WebHostLib/static/styles/tracker.css @@ -1,3 +1,9 @@ +html{ + background-image: url('../static/backgrounds/dirt/dirt-0005-large.png'); + background-repeat: repeat; + background-size: 900px 900px; +} + #tracker-wrapper { display: flex; flex-direction: column; @@ -33,6 +39,14 @@ div.dataTables_wrapper.no-footer .dataTables_scrollBody{ border: none; } +table.dataTable tbody{ + background-color: #dce2bd; +} + +table.dataTable tbody tr:hover{ + background-color: #e2eabb; +} + table.dataTable tbody td{ padding: 4px 6px; } diff --git a/WebHostLib/templates/tracker.html b/WebHostLib/templates/tracker.html index 18cf2ae2..bce25242 100644 --- a/WebHostLib/templates/tracker.html +++ b/WebHostLib/templates/tracker.html @@ -6,7 +6,9 @@ {% endblock %} + {% block body %} + {% include 'cloudHeader.html' %}