| 5217 | function isVinylOn(surface) { |
| 5218 | return readLS(VINYL_SURFACES[surface].key, "off") === "on"; |
| 5219 | } |
| 5220 | function discFurniture(disc) { |
| 5221 | return ` |
| 5222 | ${disc}::before, |
| 5223 | ${disc}::after { |
| 5224 | content: ""; |
| 5225 | position: absolute; |
| 5226 | inset: 0; |
| 5227 | border-radius: 50%; |
| 5228 | pointer-events: none; |
| 5229 | z-index: 3; |
| 5230 | } |
| 5231 | /* The pressed grooves, drawn rather than imaged. Cleared through the middle, |
| 5232 | where the label sits. */ |
| 5233 | ${disc}::before { |
| 5234 | background: repeating-radial-gradient( |
| 5235 | circle at 50% 50%, |
| 5236 | rgba(255, 255, 255, 0.055) 0 1px, |
| 5237 | rgba(0, 0, 0, 0.14) 1px 3px |
| 5238 | ); |
| 5239 | opacity: 0.5; |
| 5240 | mask-image: radial-gradient(circle at 50% 50%, transparent 0 22%, black 26%); |
| 5241 | -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 0 22%, black 26%); |