Update styling and layout/coloring of the queue items
This commit is contained in:
parent
e6a68f4f40
commit
2a0dacff3e
@ -6,7 +6,7 @@
|
|||||||
right: 0;
|
right: 0;
|
||||||
width: 400px;
|
width: 400px;
|
||||||
height: calc(100% - 78.9px); /* Adjust height to fit the queue */
|
height: calc(100% - 78.9px); /* Adjust height to fit the queue */
|
||||||
background-color: white;/*$queue-background-color; Queue background color */
|
background-color: #424242; /* Queue background color */
|
||||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
||||||
overflow-y: auto; /* Add scroll bar when queue is too long */
|
overflow-y: auto; /* Add scroll bar when queue is too long */
|
||||||
|
|
||||||
@ -25,7 +25,10 @@
|
|||||||
.queue-item {
|
.queue-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 10px;
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
padding-top: 5px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
|
||||||
.queue-song {
|
.queue-song {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -36,17 +39,18 @@
|
|||||||
img {
|
img {
|
||||||
max-width: 50px; /* Adjust maximum width for images */
|
max-width: 50px; /* Adjust maximum width for images */
|
||||||
margin-right: 10px; /* Add spacing between image and text */
|
margin-right: 10px; /* Add spacing between image and text */
|
||||||
|
border-radius: 5px; /* Add border radius to image */
|
||||||
}
|
}
|
||||||
|
|
||||||
.queue-song-info {
|
.queue-song-info {
|
||||||
h3 {
|
h3 {
|
||||||
margin: 0; /* Remove default margin for heading */
|
margin: 0; /* Remove default margin for heading */
|
||||||
color: #333; /* Adjust text color for song */
|
color: #fff; /* Adjust text color for song */
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin: 0; /* Remove default margin for paragraph */
|
margin: 0; /* Remove default margin for paragraph */
|
||||||
color: #888; /* Adjust text color for artist */
|
color: #aaa; /* Adjust text color for artist */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -54,12 +58,13 @@
|
|||||||
button {
|
button {
|
||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
|
color: #fff;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
color: #333;
|
color: #fff;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
background: none;
|
background: none;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user