Stylování došlých řešení

This commit is contained in:
Jonas Havelka 2021-09-06 02:07:13 +02:00
parent e96e2ae353
commit 6e2231e157
2 changed files with 17 additions and 3 deletions

View file

@ -1152,15 +1152,29 @@ div.gdpr {
}
}
/* tabulka odevzdaných řešení */
/* tabulka odevzdaných a došlých řešení */
.dosla_reseni tr th, .dosla_reseni tr td {
padding: 1px 10px 1px 10px;
border-collapse: collapse;
text-align: center;
}
.dosla_reseni tr th:nth-child(even), .dosla_reseni tr td:nth-child(even) {
background: dimgray;
}
.dosla_reseni tr th:nth-child(odd), .dosla_reseni tr td:nth-child(odd) {
background: white;
}
.odevzdana_reseni tr th, .odevzdana_reseni tr td {
border: 1px solid black;
padding: 1px 10px 1px 10px;
border-collapse: collapse;
text-align: center;
}
.dosla_reseni tr td#problem {
.odevzdana_reseni tr td#problem {
text-align: left;
}

View file

@ -14,7 +14,7 @@
{% for rocnik, hodnoceni in podle_rocniku %}
<h1>Ročník {{ rocnik }}</h1>
<table class="dosla_reseni">
<table class="odevzdana_reseni">
<tr>
<th>Doručeno</th>
<th>Problém</th>