This repository has been archived on 2025-08-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
lucida-queue/frontend/style.css

96 lines
1.4 KiB
CSS

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;
}