There was an update link on radio page, that wasn't working due to CSP, lel. Made it into a button.

And last played table made to grid.
This commit is contained in:
Alexander Andreev 2022-01-22 19:03:44 +04:00
parent 38630ebb34
commit baf818db02
Signed by: Arav
GPG Key ID: 1327FE8A374CC86F
1 changed files with 14 additions and 5 deletions

View File

@ -26,16 +26,25 @@
background-color: var(--secondary-color);
color: var(--background-color); }
a {
a,
button {
color: var(--primary-color);
text-decoration: none; }
a:hover {
a:hover,
button:hover {
color: var(--secondary-color);
cursor: pointer;
text-decoration: underline;
text-decoration-style: dotted;
transition: .5s; }
button {
background: none;
border: none;
font: inherit;
padding: 0; }
p {
text-align: justify;
line-height: var(--text-indent);
@ -119,9 +128,9 @@ section { margin-top: 1rem; }
#last-played { margin: 0 auto; }
#last-played tr td:first-child {
padding-right: .69rem;
text-align: right; }
#last-played tbody tr {
display: grid;
grid-template-columns: 3rem 1fr 1fr; }
footer {
font-size: .8rem;