2016-09-11 23:07:18 +02:00
|
|
|
<!DOCTYPE html>
|
2020-12-20 15:16:22 +01:00
|
|
|
<html lang="en">
|
|
|
|
<head><meta charset="UTF-8">
|
2018-01-27 23:28:20 +01:00
|
|
|
<title>WLED Settings</title>
|
2016-09-11 23:07:18 +02:00
|
|
|
<style>
|
2018-01-27 23:28:20 +01:00
|
|
|
body {
|
|
|
|
text-align: center;
|
2020-05-17 20:59:00 +02:00
|
|
|
background: #222;
|
2020-12-20 15:16:22 +01:00
|
|
|
height: 100px;
|
2018-01-27 23:28:20 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
2018-06-24 01:20:15 +02:00
|
|
|
html {
|
2020-05-17 20:59:00 +02:00
|
|
|
--h: 11.55vh;
|
2018-06-24 01:20:15 +02:00
|
|
|
}
|
2018-01-27 23:28:20 +01:00
|
|
|
button {
|
2020-05-17 20:59:00 +02:00
|
|
|
background: #333;
|
|
|
|
color: #fff;
|
|
|
|
font-family: Verdana, Helvetica, sans-serif;
|
|
|
|
border: 0.3ch solid #333;
|
2018-01-27 23:28:20 +01:00
|
|
|
display: inline-block;
|
2018-02-23 01:33:32 +01:00
|
|
|
font-size: 8vmin;
|
2020-05-17 20:59:00 +02:00
|
|
|
height: var(--h);
|
2018-01-27 23:28:20 +01:00
|
|
|
width: 95%;
|
|
|
|
margin-top: 2.4vh;
|
|
|
|
}
|
2016-09-11 23:07:18 +02:00
|
|
|
</style>
|
2018-06-24 01:20:15 +02:00
|
|
|
<script>
|
|
|
|
function BB()
|
|
|
|
{
|
|
|
|
if (window.frameElement) {
|
|
|
|
document.getElementById("b").style.display = "none";
|
|
|
|
document.documentElement.style.setProperty('--h',"13.86vh");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2016-09-11 23:07:18 +02:00
|
|
|
</head>
|
2018-06-24 01:20:15 +02:00
|
|
|
<body onload="BB()">
|
|
|
|
<form action="/"><button type=submit id="b">Back</button></form>
|
2018-02-20 22:29:48 +01:00
|
|
|
<form action="/settings/wifi"><button type="submit">WiFi Setup</button></form>
|
|
|
|
<form action="/settings/leds"><button type="submit">LED Preferences</button></form>
|
|
|
|
<form action="/settings/ui"><button type="submit">User Interface</button></form>
|
|
|
|
<form action="/settings/sync"><button type="submit">Sync Interfaces</button></form>
|
|
|
|
<form action="/settings/time"><button type="submit">Time & Macros</button></form>
|
|
|
|
<form action="/settings/sec"><button type="submit">Security & Updates</button></form>
|
2016-09-11 23:07:18 +02:00
|
|
|
</body>
|
|
|
|
</html>
|