better-looking search result table
This commit is contained in:
parent
beec047caf
commit
1c304e1184
2 changed files with 19 additions and 2 deletions
|
@ -2,6 +2,22 @@ body {
|
||||||
background-color: darkgrey
|
background-color: darkgrey
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
background-color: darkgray;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
text-align: left;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:nth-child(odd) {background-color: ghostwhite;}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
text-align: end;
|
text-align: end;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -14,8 +30,8 @@ body {
|
||||||
background-color: goldenrod;
|
background-color: goldenrod;
|
||||||
}
|
}
|
||||||
|
|
||||||
.watchlist {
|
.watchtitle {
|
||||||
background-color: ghostwhite;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header_logged_in {
|
.header_logged_in {
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<hr />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2>Simple Search</h2>
|
<h2>Simple Search</h2>
|
||||||
|
|
Loading…
Reference in a new issue