745 lines
13 KiB
CSS
745 lines
13 KiB
CSS
body{
|
|
font-family: VT323, monospace;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
background: #0a0a0a;
|
|
color: #00ffff;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
|
|
body .container{
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
body h1{
|
|
color: #4488ff;
|
|
text-align: center;
|
|
font-size: 2.5em;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
body h2{
|
|
color: #4488ff;
|
|
}
|
|
|
|
body .status{
|
|
background: #1a2332;
|
|
padding: 20px;
|
|
border: 1px solid #2a3441;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
body .panel{
|
|
background: #1a2332;
|
|
padding: 20px;
|
|
border: 1px solid #2a3441;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
body .nav{
|
|
margin: 20px 0;
|
|
}
|
|
|
|
body .nav a{
|
|
color: #00ffff;
|
|
text-decoration: none;
|
|
margin: 0 15px;
|
|
padding: 10px 20px;
|
|
border: 1px solid #2a3441;
|
|
background: #1a2332;
|
|
display: inline-block;
|
|
}
|
|
|
|
body .nav a :hover{
|
|
background: #2a3441;
|
|
}
|
|
|
|
body .controls{
|
|
margin: 20px 0;
|
|
}
|
|
|
|
body .controls button{
|
|
background: #1a2332;
|
|
color: #00ffff;
|
|
border: 1px solid #2a3441;
|
|
padding: 10px 20px;
|
|
margin: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
body .controls button :hover{
|
|
background: #2a3441;
|
|
}
|
|
|
|
body button{
|
|
background: #2a3441;
|
|
color: #00ffff;
|
|
border: 1px solid #3a4551;
|
|
padding: 10px 20px;
|
|
margin: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
body button :hover{
|
|
background: #3a4551;
|
|
}
|
|
|
|
body .now-playing{
|
|
background: #1a2332;
|
|
padding: 20px;
|
|
border: 1px solid #2a3441;
|
|
margin: 20px 0;
|
|
font-size: 1.5em;
|
|
color: #4488ff;
|
|
}
|
|
|
|
body .back{
|
|
color: #00ffff;
|
|
text-decoration: none;
|
|
margin-bottom: 20px;
|
|
display: inline-block;
|
|
}
|
|
|
|
body .back :hover{
|
|
text-decoration: underline;
|
|
}
|
|
|
|
body .player{
|
|
background: #1a2332;
|
|
padding: 40px;
|
|
border: 1px solid #2a3441;
|
|
margin: 40px auto;
|
|
max-width: 600px;
|
|
}
|
|
|
|
|
|
|
|
body .player .controls button{
|
|
padding: 15px 30px;
|
|
margin: 10px;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
body .player-section{
|
|
background: #1a2332;
|
|
padding: 25px;
|
|
border: 1px solid #2a3441;
|
|
margin: 20px 0;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
body .track-browser{
|
|
margin: 15px 0;
|
|
}
|
|
|
|
body .search-input{
|
|
width: 100%;
|
|
padding: 12px;
|
|
background: #0a0a0a;
|
|
color: #00ffff;
|
|
border: 1px solid #2a3441;
|
|
font-family: Courier New, monospace;
|
|
font-size: 14px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
body .track-list{
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
border: 1px solid #2a3441;
|
|
background: #0a0a0a;
|
|
}
|
|
|
|
body .track-item{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 12px 15px;
|
|
border-bottom: 1px solid #2a3441;
|
|
-moz-transition: background-color 0.2s;
|
|
-o-transition: background-color 0.2s;
|
|
-webkit-transition: background-color 0.2s;
|
|
-ms-transition: background-color 0.2s;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
body .track-item :hover{
|
|
background: #1a2332;
|
|
}
|
|
|
|
body .track-info{
|
|
flex: 1;
|
|
}
|
|
|
|
body .track-info .track-title{
|
|
color: #00ffff;
|
|
font-weight: bold;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
body .track-info .track-meta{
|
|
color: #888;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
body .track-actions{
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
body .audio-player{
|
|
text-align: center;
|
|
}
|
|
|
|
body .track-art{
|
|
font-size: 3em;
|
|
margin-right: 20px;
|
|
color: #4488ff;
|
|
}
|
|
|
|
|
|
|
|
body .track-details .track-title{
|
|
font-size: 1.4em;
|
|
color: #00ffff;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
body .track-details .track-artist{
|
|
font-size: 1.1em;
|
|
color: #4488ff;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
body .track-details .track-album{
|
|
color: #888;
|
|
}
|
|
|
|
body .player-controls{
|
|
margin: 20px 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
body .player-info{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 15px;
|
|
padding: 10px;
|
|
background: #0a0a0a;
|
|
border: 1px solid #2a3441;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
body .time-display{
|
|
color: #00ffff;
|
|
font-family: Courier New, monospace;
|
|
}
|
|
|
|
body .volume-control{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
body .volume-control label{
|
|
color: #4488ff;
|
|
}
|
|
|
|
body .volume-slider{
|
|
width: 100px;
|
|
height: 5px;
|
|
background: #2a3441;
|
|
outline: none;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
body .btn{
|
|
background: #2a3441;
|
|
color: #00ffff;
|
|
border: 1px solid #3a4551;
|
|
padding: 8px 16px;
|
|
margin: 3px;
|
|
cursor: pointer;
|
|
font-family: Courier New, monospace;
|
|
font-size: 14px;
|
|
border-radius: 3px;
|
|
-moz-transition: all 0.2s;
|
|
-o-transition: all 0.2s;
|
|
-webkit-transition: all 0.2s;
|
|
-ms-transition: all 0.2s;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
body .btn :hover{
|
|
background: #3a4551;
|
|
border-color: #3a4551;
|
|
}
|
|
|
|
body .btn .btn-primary{
|
|
background: #0066cc;
|
|
border-color: #0088ff;
|
|
}
|
|
|
|
body .btn .btn-primary :hover{
|
|
background: #0088ff;
|
|
}
|
|
|
|
body .btn .btn-secondary{
|
|
background: #444;
|
|
border-color: #2a3441;
|
|
}
|
|
|
|
body .btn .btn-secondary :hover{
|
|
background: #666;
|
|
}
|
|
|
|
body .btn .btn-sm{
|
|
padding: 4px 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
body .btn .btn.active{
|
|
background: #4488ff;
|
|
border-color: #5599ff;
|
|
color: #000;
|
|
}
|
|
|
|
body .btn .playlist-controls{
|
|
margin-bottom: 15px;
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
body .btn .playlist-input{
|
|
flex: 1;
|
|
padding: 8px 12px;
|
|
background: #0a0a0a;
|
|
color: #00ffff;
|
|
border: 1px solid #2a3441;
|
|
font-family: Courier New, monospace;
|
|
}
|
|
|
|
body .btn .playlist-list{
|
|
border: 1px solid #2a3441;
|
|
background: #0a0a0a;
|
|
min-height: 100px;
|
|
padding: 10px;
|
|
}
|
|
|
|
body .btn .queue-controls{
|
|
margin-bottom: 15px;
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
body .btn .play-queue{
|
|
border: 1px solid #2a3441;
|
|
background: #0a0a0a;
|
|
min-height: 150px;
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
padding: 10px;
|
|
}
|
|
|
|
body .btn .queue-item{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px 10px;
|
|
border-bottom: 1px solid #2a3441;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
body .btn .queue-item :last-child{
|
|
border-bottom: none;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
body .btn .empty-queue{
|
|
text-align: center;
|
|
color: #666;
|
|
padding: 20px;
|
|
font-style: italic;
|
|
}
|
|
|
|
body .btn .no-tracks{
|
|
text-align: center;
|
|
color: #666;
|
|
padding: 20px;
|
|
font-style: italic;
|
|
}
|
|
|
|
body .btn .no-playlists{
|
|
text-align: center;
|
|
color: #666;
|
|
padding: 20px;
|
|
font-style: italic;
|
|
}
|
|
|
|
body .btn .loading{
|
|
text-align: center;
|
|
color: #4488ff;
|
|
padding: 20px;
|
|
}
|
|
|
|
body .btn .error{
|
|
text-align: center;
|
|
color: #ff0000;
|
|
padding: 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
body .btn .upload-section{
|
|
margin: 20px 0;
|
|
padding: 20px;
|
|
background: #0a0a0a;
|
|
border: 1px solid #2a3441;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
body .btn .upload-controls{
|
|
display: flex;
|
|
gap: 15px;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
body .btn .upload-info{
|
|
color: #888;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
body .btn .upload-progress{
|
|
margin-top: 10px;
|
|
padding: 10px;
|
|
background: #1a2332;
|
|
border: 1px solid #2a3441;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
body .btn .progress-bar{
|
|
height: 20px;
|
|
background: #4488ff;
|
|
border-radius: 3px;
|
|
-moz-transition: width 0.3s ease;
|
|
-o-transition: width 0.3s ease;
|
|
-webkit-transition: width 0.3s ease;
|
|
-ms-transition: width 0.3s ease;
|
|
transition: width 0.3s ease;
|
|
width: 0%;
|
|
}
|
|
|
|
body .btn .progress-text{
|
|
display: block;
|
|
margin-top: 5px;
|
|
color: #00ffff;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
body .btn input{
|
|
padding: 8px 12px;
|
|
background: #1a2332;
|
|
color: #00ffff;
|
|
border: 1px solid #2a3441;
|
|
border-radius: 3px;
|
|
font-family: Courier New, monospace;
|
|
}
|
|
|
|
body .btn .upload-interface{
|
|
margin-top: 2rem;
|
|
padding: 1.5rem;
|
|
background-color: #1a2332;
|
|
border-radius: 8px;
|
|
border: 1px solid #2a3441;
|
|
}
|
|
|
|
body .btn .upload-interface h3{
|
|
color: #00ffff;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
body .btn .upload-interface .upload-area{
|
|
border: 2px dashed #2a3441;
|
|
border-radius: 8px;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
background-color: #0f0f0f;
|
|
-moz-transition: border-color 0.3s ease;
|
|
-o-transition: border-color 0.3s ease;
|
|
-webkit-transition: border-color 0.3s ease;
|
|
-ms-transition: border-color 0.3s ease;
|
|
transition: border-color 0.3s ease;
|
|
}
|
|
|
|
body .btn .upload-interface .upload-area &:hover{
|
|
border-color: #00ffff;
|
|
}
|
|
|
|
body .btn .upload-interface .upload-area .upload-icon{
|
|
font-size: 3rem;
|
|
color: #666;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
body .btn .upload-interface .upload-area p{
|
|
color: #999;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
body .btn .upload-interface .upload-area .btn{
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
body .btn .auth-container{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 60vh;
|
|
padding: 2rem;
|
|
}
|
|
|
|
body .btn .auth-form{
|
|
background-color: #1a2332;
|
|
border: 1px solid #2a3441;
|
|
border-radius: 8px;
|
|
padding: 2rem;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
-moz-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
|
|
-o-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
|
|
-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
|
|
-ms-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
body .btn .auth-form h2{
|
|
color: #00ffff;
|
|
text-align: center;
|
|
margin-bottom: 1.5rem;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
body .btn .auth-form h3{
|
|
color: #00ffff;
|
|
margin-bottom: 1rem;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
body .btn .form-group{
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
body .btn .form-group label{
|
|
display: block;
|
|
color: #ccc;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
body .btn .form-group input{
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
background-color: #0f0f0f;
|
|
border: 1px solid #2a3441;
|
|
border-radius: 4px;
|
|
color: #fff;
|
|
font-size: 1rem;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body .btn .form-group input &:focus{
|
|
border-color: #00ffff;
|
|
outline: none;
|
|
-moz-box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
|
|
-o-box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
|
|
-webkit-box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
|
|
-ms-box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
|
|
box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
|
|
}
|
|
|
|
body .btn .form-actions{
|
|
display: flex;
|
|
gap: 1rem;
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
body .btn .message{
|
|
padding: 0.75rem;
|
|
border-radius: 4px;
|
|
margin-top: 1rem;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
body .btn .message &.success{
|
|
background-color: rgba(0, 255, 0, 0.1);
|
|
border: 1px solid #00ffff;
|
|
color: #00ffff;
|
|
}
|
|
|
|
body .btn .message &.error{
|
|
background-color: rgba(255, 0, 0, 0.1);
|
|
border: 1px solid #ff0000;
|
|
color: #ff0000;
|
|
}
|
|
|
|
body .btn .auth-link{
|
|
text-align: center;
|
|
margin-top: 1.5rem;
|
|
color: #999;
|
|
}
|
|
|
|
body .btn .auth-link a{
|
|
color: #00ffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
body .btn .auth-link a &:hover{
|
|
text-decoration: underline;
|
|
}
|
|
|
|
body .btn .profile-container{
|
|
max-width: 600px;
|
|
margin: 2rem auto;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
body .btn .profile-card{
|
|
background-color: #1a2332;
|
|
border: 1px solid #2a3441;
|
|
border-radius: 8px;
|
|
padding: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
body .btn .profile-card h2{
|
|
color: #00ffff;
|
|
margin-bottom: 1.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
body .btn .profile-info{
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
body .btn .info-group{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.75rem 0;
|
|
border-bottom: 1px solid #2a3441;
|
|
}
|
|
|
|
body .btn .info-group &:last-child{
|
|
border-bottom: none;
|
|
}
|
|
|
|
body .btn .info-group label{
|
|
color: #ccc;
|
|
font-weight: bold;
|
|
}
|
|
|
|
body .btn .info-group span{
|
|
color: #fff;
|
|
}
|
|
|
|
body .btn .role-badge{
|
|
background-color: #00ffff;
|
|
color: #000;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 4px;
|
|
font-size: 0.875rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
body .btn .profile-actions{
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
body .btn .user-management{
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
body .btn .users-table{
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background-color: #1a2332;
|
|
border: 1px solid #2a3441;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body .btn .users-table thead{
|
|
background-color: #0f0f0f;
|
|
}
|
|
|
|
body .btn .users-table thead th{
|
|
padding: 1rem;
|
|
text-align: left;
|
|
color: #00ffff;
|
|
font-weight: bold;
|
|
border-bottom: 1px solid #2a3441;
|
|
}
|
|
|
|
|
|
|
|
body .btn .users-table tbody tr{
|
|
border-bottom: 1px solid #2a3441;
|
|
}
|
|
|
|
body .btn .users-table tbody tr &:hover{
|
|
background-color: #222;
|
|
}
|
|
|
|
body .btn .users-table tbody tr td{
|
|
padding: 1rem;
|
|
color: #fff;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
body .btn .users-table tbody .user-actions{
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
body .btn .users-table tbody .user-actions .btn{
|
|
padding: 0.25rem 0.5rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
body .btn .user-stats{
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
gap: 1rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
body .btn .stat-card{
|
|
background-color: #1a2332;
|
|
border: 1px solid #2a3441;
|
|
border-radius: 8px;
|
|
padding: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
body .btn .stat-card .stat-number{
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
color: #00ffff;
|
|
display: block;
|
|
}
|
|
|
|
body .btn .stat-card .stat-label{
|
|
color: #ccc;
|
|
font-size: 0.875rem;
|
|
margin-top: 0.5rem;
|
|
} |