Change links hover and space the words table
This commit is contained in:
parent
d402b0bc8b
commit
43c96d5e47
2 changed files with 16 additions and 1 deletions
|
@ -41,6 +41,10 @@ html, body {
|
||||||
a {
|
a {
|
||||||
color: var(--font-color);
|
color: var(--font-color);
|
||||||
}
|
}
|
||||||
|
a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
border-bottom: 0.08em dashed var(--font-color);
|
||||||
|
}
|
||||||
#page-wrap {
|
#page-wrap {
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
margin-bottom: calc(0em - var(--footer-height));
|
margin-bottom: calc(0em - var(--footer-height));
|
||||||
|
@ -119,3 +123,12 @@ footer, #page-wrap:after {
|
||||||
summary:active, summary:focus {
|
summary:active, summary:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.download_link {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
details table {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
margin-left: 1em;
|
||||||
|
}
|
||||||
|
|
|
@ -51,7 +51,9 @@ if (isset($id)) {
|
||||||
</thead>
|
</thead>
|
||||||
</table>
|
</table>
|
||||||
</details>
|
</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
|
<?php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue