mirror of
https://github.com/KubaPro010/fm-dx-webserver.git
synced 2026-07-29 08:19:19 +02:00
claude made this style
This commit is contained in:
+46
-1
@@ -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>
|
||||
Reference in New Issue
Block a user