(Proper) Initial commit
This commit is contained in:
parent
48c0059860
commit
32796e4026
19 changed files with 6094 additions and 97 deletions
96
frontend/style.css
Normal file
96
frontend/style.css
Normal file
|
@ -0,0 +1,96 @@
|
|||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: white;
|
||||
padding: 5px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
z-index: 1000;
|
||||
flex-shrink: 0;
|
||||
border-top: 1px solid #ccc;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
background-color: #ffffff;
|
||||
padding: 20px;
|
||||
margin: 20px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
width: 80%;
|
||||
max-width: 1200px;
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#queue-form {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#queue-form input {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
#queue-form button {
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
#queue-list, #queue-history {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#queue-list ol, #queue-history ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
#queue-list li, #queue-history li {
|
||||
margin-bottom: 10px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#connectivity-status {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
background: red;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cover-art {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
object-fit: cover;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.delete, .source, .state, .retry {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-right: 0;
|
||||
}
|
Reference in a new issue