90 lines
1.2 KiB
CSS
Executable File
90 lines
1.2 KiB
CSS
Executable File
root, *, body {
|
|
margin: 0;
|
|
cursor: none;
|
|
}
|
|
|
|
|
|
body {
|
|
text-align: center;
|
|
font-size: 3.5em;
|
|
font-weight: bold;
|
|
font-family: "Roboto Light", Ubuntu, sans-serif;
|
|
margin-top: 2%;
|
|
margin-left: 1%;
|
|
margin-right: 1%;
|
|
background-color: #0E2D2D;
|
|
color: white;
|
|
cursor: none;
|
|
}
|
|
|
|
|
|
.live-dj {
|
|
color: #3DE072;
|
|
margin-bottom: 4%;
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
margin-bottom: 4%;
|
|
color: #7E3E41;
|
|
}
|
|
|
|
|
|
.cover {
|
|
border-radius: 10px;
|
|
display: block;
|
|
width: 50%;
|
|
margin: 1% auto;
|
|
}
|
|
|
|
.current-playing-name {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.current-playing-artist {
|
|
font-size: 0.4em;
|
|
}
|
|
|
|
|
|
.container {
|
|
display: grid;
|
|
grid-template-columns: 30% 25% 45%;
|
|
grid-template-rows: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.queue {
|
|
cursor: none;
|
|
}
|
|
|
|
.now {
|
|
grid-row: span 1;
|
|
grid-column: span 1;
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
font-family: arial, sans-serif;
|
|
border-collapse: collapse;
|
|
width: 90%;
|
|
margin-left: 5%;
|
|
background-color: #1D3636;
|
|
cursor: none;
|
|
}
|
|
|
|
td, th {
|
|
border: 1px solid #131A2A;
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
|
|
tr th {
|
|
text-align: center;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #1D3636;
|
|
|
|
} |