claude made this style

This commit is contained in:
2026-04-07 10:10:28 +02:00
parent 65f01462b0
commit b749c8178f
+46 -1
View File
@@ -18,9 +18,54 @@
<script src="js/3las/fallback/3las.fallback.js"></script>
<script src="js/3las/3las.js"></script>
<script src="js/audio.js"></script>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #111;
color: #eee;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
gap: 20px;
}
.playbutton {
background-color: #222;
color: #eee;
border: 1px solid #444;
padding: 10px 24px;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
transition: background 0.2s;
}
.playbutton:hover {
background-color: #333;
}
.playbutton:active {
background-color: #444;
}
#volumeSlider {
width: 100%;
max-width: 800px;
accent-color: #4af;
cursor: pointer;
}
</style>
</head>
<body>
<button class="playbutton">Start / Stop</button>
<input type="range" id="volumeSlider" min="0" max="1" step="0.01" value="1" style="width: 100%; max-width: 500px;">
<input type="range" id="volumeSlider" min="0" max="1" step="0.01" value="1">
</body>
</html>