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

View File

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