Initial commit
This commit is contained in:
90
public/stylesheets/fs.css
Executable file
90
public/stylesheets/fs.css
Executable file
@ -0,0 +1,90 @@
|
||||
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;
|
||||
|
||||
}
|
104
public/stylesheets/style.css
Executable file
104
public/stylesheets/style.css
Executable file
@ -0,0 +1,104 @@
|
||||
body {
|
||||
background-color: #0E2D2D;
|
||||
color: white;
|
||||
font-family: "Roboto Light", Ubuntu, sans-serif;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 1.2em;
|
||||
border-radius: 10px;
|
||||
background-color: #42A4A4;
|
||||
border: 1px solid #423434;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
input {
|
||||
font-size: 1.2em;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
|
||||
table {
|
||||
font-family: arial, sans-serif;
|
||||
border-collapse: collapse;
|
||||
width: 99.99%;
|
||||
background-color: #1D3636;
|
||||
margin-bottom: 8%;
|
||||
overflow-x: hidden;
|
||||
-webkit-user-select: none; /* Safari */
|
||||
-ms-user-select: none; /* IE 10 and IE 11 */
|
||||
user-select: none; /* Standard syntax */
|
||||
|
||||
}
|
||||
|
||||
|
||||
td, th {
|
||||
border: 1px solid #131A2A;
|
||||
text-align: left;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
tr th {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
tr:active {
|
||||
background-color: #66A1A1 !important;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {
|
||||
background-color: #1F4444;
|
||||
}
|
||||
|
||||
|
||||
/* The Modal (background) */
|
||||
.modal {
|
||||
display: none; /* Hidden by default */
|
||||
position: fixed; /* Stay in place */
|
||||
z-index: 1; /* Sit on top */
|
||||
padding-top: 100px; /* Location of the box */
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%; /* Full width */
|
||||
height: 100%; /* Full height */
|
||||
overflow: auto; /* Enable scroll if needed */
|
||||
background-color: rgb(0,0,0); /* Fallback color */
|
||||
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
|
||||
}
|
||||
|
||||
/* Modal Content */
|
||||
.modal-content {
|
||||
background-color: #fefefe;
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
border: 1px solid #888;
|
||||
width: 80%;
|
||||
color: black;
|
||||
}
|
||||
|
||||
/* The Close Button */
|
||||
.close {
|
||||
color: #aaaaaa;
|
||||
float: right;
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.close:hover,
|
||||
.close:focus {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
background-color: #0E2D2D;
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
Reference in New Issue
Block a user