summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pyc/templates/lab.html2
-rw-r--r--static/style.css6
2 files changed, 4 insertions, 4 deletions
diff --git a/pyc/templates/lab.html b/pyc/templates/lab.html
index a35131d..916f95f 100644
--- a/pyc/templates/lab.html
+++ b/pyc/templates/lab.html
@@ -4,7 +4,7 @@ Lab {{ lab.id }} due {{ lab.due }} at 11:59:59 PDT (UTC-7):
<br>{{ lab.name }}
<br><a href="/static/lab{{ lab.id }}.py">Download</a> the starter code
-<p><table>
+<p><table id="lab">
<tr>
<th>User</th>
<th>Grade</th>
diff --git a/static/style.css b/static/style.css
index ad93cac..e918c8c 100644
--- a/static/style.css
+++ b/static/style.css
@@ -1,11 +1,11 @@
-table {
+table#lab {
border-collapse: collapse;
border: 1px solid #000;
}
-th {
+#lab th {
padding: 5px;
}
-td {
+#lab td {
border: 1px solid #000;
padding: 5px;
}