1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Design fixes

This commit is contained in:
Krateng 2019-03-24 16:19:45 +01:00
parent 011b6f6d91
commit 3c9f43ece5
3 changed files with 17 additions and 16 deletions

View File

@ -305,12 +305,7 @@ table.list td.artists,td.artist,td.title {
} }
table th {
text-align: left;
}
table td.interaction {
width:65px;
}
/* /*
@ -383,7 +378,21 @@ td.button.important div {
} }
table.misc {
margin-left:20px;
}
table.misc td {
padding-right:20px;
color:#bbbbaa;
}
table.misc th {
text-align: left;
}
table.misc td.interaction {
width:65px;
}

View File

@ -54,14 +54,8 @@
} }
</script> </script>
<style>
td {
padding-right:20px;
}
</style>
</head> </head>
<body onload="replace();insertAPIKeyFromCookie()"> <body onload="replace();insertAPIKeyFromCookie()">
@ -89,14 +83,12 @@
(make sure to use the public URL) with the key-value-pairs (make sure to use the public URL) with the key-value-pairs
<br/> <br/>
<br/> <br/>
<span class="stats"> <table class="misc">
<table>
<tr> <td>artist</td> <td><i>Artist String</i></td> </tr> <tr> <td>artist</td> <td><i>Artist String</i></td> </tr>
<tr> <td>title</td> <td><i>Title String</i></td> </tr> <tr> <td>title</td> <td><i>Title String</i></td> </tr>
<tr> <td>key</td> <td><i>API Key</i></td> </tr> <tr> <td>key</td> <td><i>API Key</i></td> </tr>
<tr> <td>seconds</td> <td><i>Duration of Scrobble - optional and currently not used</i></td> </tr> <tr> <td>seconds</td> <td><i>Duration of Scrobble - optional and currently not used</i></td> </tr>
</table> </table>
</span>
<br/><br/> <br/><br/>

View File

@ -2,7 +2,7 @@ import os
def instructions(keys): def instructions(keys):
html = "<table>" html = "<table class='misc'>"
html += "<tr><th></th><th>Module</th><th>Author</th><th>Description</th></tr>" html += "<tr><th></th><th>Module</th><th>Author</th><th>Description</th></tr>"