You've already forked RadioPlayer
mirror of
https://github.com/radio95-rnt/RadioPlayer.git
synced 2026-02-26 21:53:54 +01:00
phones?
This commit is contained in:
@@ -23,8 +23,10 @@
|
|||||||
.progress-wrap{display:flex; gap:10px; align-items:center}
|
.progress-wrap{display:flex; gap:10px; align-items:center}
|
||||||
.progress-bar{flex:1; height:12px; background:var(--glass); border-radius:8px; overflow:hidden; position:relative}
|
.progress-bar{flex:1; height:12px; background:var(--glass); border-radius:8px; overflow:hidden; position:relative}
|
||||||
.progress-fill{height:100%; width:0%; background:linear-gradient(90deg,var(--accent), #6cc7ff); transition:width 0.2s linear}
|
.progress-fill{height:100%; width:0%; background:linear-gradient(90deg,var(--accent), #6cc7ff); transition:width 0.2s linear}
|
||||||
button, .btn{background:transparent;border:1px solid rgba(255,255,255,0.06); padding:8px 12px;border-radius:8px;color:inherit;cursor:pointer}
|
button, .btn{background:transparent;border:1px solid rgba(255,255,255,0.06); padding:8px 12px;border-radius:8px;color:inherit;cursor:pointer; transition: background-color 0.12s ease;}
|
||||||
|
button:hover, .btn:hover {background-color: var(--glass);}
|
||||||
.btn.primary{background:linear-gradient(90deg,var(--accent), #6cc7ff); color:#001; border:none; font-weight:600}
|
.btn.primary{background:linear-gradient(90deg,var(--accent), #6cc7ff); color:#001; border:none; font-weight:600}
|
||||||
|
.btn.primary:hover { background:linear-gradient(90deg, #3399ee, #5bbaff); }
|
||||||
.list{background:#07121a; border-radius:8px; padding:8px; overflow:auto; border:1px solid rgba(255,255,255,0.02)}
|
.list{background:#07121a; border-radius:8px; padding:8px; overflow:auto; border:1px solid rgba(255,255,255,0.02)}
|
||||||
ul.playlist{list-style:none; padding:6px; margin:0; font-family: "Consolas",monospace; font-size:13px;}
|
ul.playlist{list-style:none; padding:6px; margin:0; font-family: "Consolas",monospace; font-size:13px;}
|
||||||
ul.playlist li{padding:6px 8px; border-radius:6px; display:flex; justify-content:space-between; gap:8px; transition: background-color 0.12s ease;}
|
ul.playlist li{padding:6px 8px; border-radius:6px; display:flex; justify-content:space-between; gap:8px; transition: background-color 0.12s ease;}
|
||||||
@@ -42,7 +44,16 @@
|
|||||||
.row{display:flex; gap:8px; align-items:center}
|
.row{display:flex; gap:8px; align-items:center}
|
||||||
.muted{color:var(--muted); font-size:13px}
|
.muted{color:var(--muted); font-size:13px}
|
||||||
.footer{display:flex; justify-content:space-between; gap:8px; align-items:center; margin-top:8px}
|
.footer{display:flex; justify-content:space-between; gap:8px; align-items:center; margin-top:8px}
|
||||||
@media (max-width:900px){ .layout{flex-direction:column} .right{grid-template-columns:1fr} .left{min-width:auto} }
|
.directory-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px; flex-grow:1; overflow:hidden}
|
||||||
|
@media (max-width:800px){
|
||||||
|
html, body{overflow: auto; height: auto}
|
||||||
|
.container{padding: 10px; margin: 0}
|
||||||
|
.layout{flex-direction: column; height: auto}
|
||||||
|
.left{min-width:auto}
|
||||||
|
.directory-grid {grid-template-columns: 1fr}
|
||||||
|
.listbox {min-height: 250px}
|
||||||
|
button, .btn {padding: 10px 14px}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@@ -58,7 +69,7 @@
|
|||||||
<div class="track" id="now-track">Loading...</div>
|
<div class="track" id="now-track">Loading...</div>
|
||||||
<div class="progress-wrap" style="margin-top:8px">
|
<div class="progress-wrap" style="margin-top:8px">
|
||||||
<div class="progress-bar" title="progress"><div class="progress-fill" id="prog-fill"></div></div>
|
<div class="progress-bar" title="progress"><div class="progress-fill" id="prog-fill"></div></div>
|
||||||
<div class="small" id="time-label">00:00:00 / 00:00:00 (00:00:00)</div>
|
<div class="small" id="time-label">00:00 / 00:00 (00:00)</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="controls" style="margin-top:10px">
|
<div class="controls" style="margin-top:10px">
|
||||||
<button id="skip-btn" class="btn">⏭ Skip Track</button>
|
<button id="skip-btn" class="btn">⏭ Skip Track</button>
|
||||||
@@ -88,7 +99,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="panel right">
|
<div class="panel right">
|
||||||
<div style="display:grid; grid-template-columns:1fr 1fr; gap:12px; flex-grow:1; overflow:hidden">
|
<div class="directory-grid">
|
||||||
<div class="box" style="padding:8px">
|
<div class="box" style="padding:8px">
|
||||||
<div class="frame-title">Directory Browser</div>
|
<div class="frame-title">Directory Browser</div>
|
||||||
<div class="listbox" id="dirs-box"></div>
|
<div class="listbox" id="dirs-box"></div>
|
||||||
|
|||||||
Reference in New Issue
Block a user