File size: 3,369 Bytes
44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 0dfd298 44a2550 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
.playback-controls {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.25rem;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-radius: 12px;
margin: 1.5rem 0;
flex-wrap: wrap;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
border: 1px solid #dee2e6;
}
.playback-controls button {
padding: 0.6rem 1.25rem;
font-size: 0.95rem;
font-weight: 500;
border: 2px solid #dee2e6;
background: white;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.playback-controls button:hover:not(:disabled) {
background: #007bff;
border-color: #007bff;
color: white;
transform: translateY(-1px);
box-shadow: 0 3px 6px rgba(0, 123, 255, 0.2);
}
.playback-controls button:active:not(:disabled) {
transform: translateY(0);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.playback-controls button:disabled {
opacity: 0.4;
cursor: not-allowed;
background: #f8f9fa;
}
.playback-controls button.active {
background: #007bff;
border-color: #007bff;
color: white;
}
.tempo-control {
display: flex;
align-items: center;
gap: 0.75rem;
background: white;
padding: 0.5rem 0.75rem;
border-radius: 8px;
border: 1px solid #dee2e6;
}
.tempo-control label {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
font-weight: 500;
color: #495057;
}
.tempo-control input[type="range"] {
width: 150px;
height: 6px;
border-radius: 3px;
background: #dee2e6;
outline: none;
-webkit-appearance: none;
}
.tempo-control input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 16px;
height: 16px;
border-radius: 50%;
background: #007bff;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
transition: all 0.2s ease;
}
.tempo-control input[type="range"]::-webkit-slider-thumb:hover {
background: #0056b3;
transform: scale(1.1);
box-shadow: 0 3px 6px rgba(0, 123, 255, 0.4);
}
.tempo-control input[type="range"]::-moz-range-thumb {
width: 16px;
height: 16px;
border-radius: 50%;
background: #007bff;
cursor: pointer;
border: none;
box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
transition: all 0.2s ease;
}
.tempo-control input[type="range"]::-moz-range-thumb:hover {
background: #0056b3;
transform: scale(1.1);
box-shadow: 0 3px 6px rgba(0, 123, 255, 0.4);
}
.tempo-control span {
font-weight: 600;
color: #007bff;
min-width: 40px;
text-align: center;
}
.time-display {
font-size: 0.95rem;
color: #495057;
font-family: 'Courier New', monospace;
font-weight: 500;
background: white;
padding: 0.5rem 0.75rem;
border-radius: 6px;
border: 1px solid #dee2e6;
}
.volume-control {
display: flex;
align-items: center;
gap: 0.5rem;
}
.volume-control label {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
color: #495057;
}
.volume-control input[type="range"] {
width: 100px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.playback-controls {
justify-content: center;
gap: 0.75rem;
padding: 1rem;
}
.playback-controls button {
padding: 0.5rem 1rem;
font-size: 0.9rem;
}
.tempo-control {
width: 100%;
justify-content: space-between;
}
.time-display {
width: 100%;
text-align: center;
}
}
|