Combined text-decoration into one line. Added gap, set min-width of last-played table, and right text-align of second column.

This commit is contained in:
Alexander Andreev 2022-01-22 23:25:51 +04:00
parent 01a68100ec
commit bf2e484bde
Signed by: Arav
GPG Key ID: 1327FE8A374CC86F
1 changed files with 5 additions and 3 deletions

View File

@ -35,8 +35,7 @@ a:hover,
button:hover {
color: var(--secondary-color);
cursor: pointer;
text-decoration: underline;
text-decoration-style: dotted;
text-decoration: underline dotted;
transition: .5s; }
button {
@ -126,12 +125,15 @@ nav h1 {
section { margin-top: 1rem; }
#last-played { margin: 0 auto; }
#last-played { margin: 0 auto; min-width: 100%; }
#last-played tbody tr {
display: grid;
gap: .5rem;
grid-template-columns: 3rem 1fr 1fr; }
#last-played tbody tr td:nth-child(2) { text-align: right; }
footer {
font-size: .8rem;
text-align: center;