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
|
||||
}
|
||||
|
||||
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 {
|
||||
text-align: end;
|
||||
display: flex;
|
||||
|
@ -14,8 +30,8 @@ body {
|
|||
background-color: goldenrod;
|
||||
}
|
||||
|
||||
.watchlist {
|
||||
background-color: ghostwhite;
|
||||
.watchtitle {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.header_logged_in {
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
<hr />
|
||||
</div>
|
||||
|
||||
<h2>Simple Search</h2>
|
||||
|
|
Loading…
Reference in a new issue