diff --git a/modules/web.html b/modules/web.html index 8a19327..f1032f2 100644 --- a/modules/web.html +++ b/modules/web.html @@ -21,10 +21,11 @@ .now, .next {margin-bottom:12px} .now .track, .next .track {font-weight:600; font-size:14px; word-break:break-all} .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:9px; 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} - 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, .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.activated { background:linear-gradient(90deg, #9ed3ff46, #5bbbff2a); } .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)} @@ -46,6 +47,8 @@ .muted{color:var(--muted); font-size:13px} .footer{display:flex; justify-content:space-between; gap:8px; align-items:center; margin-top:8px} .directory-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px; flex-grow:1; overflow:hidden} + #keybinds {display: flex; gap: 10px; align-items: center; white-space: nowrap; } + #keybinds kbd {background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 2px 6px; font-family: "Consolas", monospace; font-size: 12px; color: #e6eef6; } @media (max-width:800px){ html, body{overflow: auto; height: auto} .container{padding: 10px; margin: 0} @@ -54,6 +57,7 @@ .directory-grid {grid-template-columns: 1fr} .listbox {min-height: 250px} button, .btn {padding: 10px 14px} + #playlist-box {display: none;} } @@ -75,7 +79,7 @@