Change links hover and space the words table

This commit is contained in:
Gregory Trolliet 2020-11-23 20:33:57 +01:00
parent d402b0bc8b
commit 43c96d5e47
2 changed files with 16 additions and 1 deletions

View File

@ -41,6 +41,10 @@ html, body {
a {
color: var(--font-color);
}
a:hover {
text-decoration: none;
border-bottom: 0.08em dashed var(--font-color);
}
#page-wrap {
min-height: 100%;
margin-bottom: calc(0em - var(--footer-height));
@ -119,3 +123,12 @@ footer, #page-wrap:after {
summary:active, summary:focus {
outline: none;
}
.download_link {
margin-top: 0.5em;
}
details table {
margin-top: 0.5em;
margin-left: 1em;
}

View File

@ -51,7 +51,9 @@ if (isset($id)) {
</thead>
</table>
</details>
<a href="download.php?id=<?php echo $id ?>"><?php echo L::wordsList_download ?></a>
<div class="download_link">
<a href="download.php?id=<?php echo $id ?>"><?php echo L::wordsList_download ?></a>
</div>
<?php
}
}