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 {
|
2021-05-08 18:04:44 +02:00
|
|
|
--h: 10.2vh;
|
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;
|
2018-01-27 23:28:20 +01:00
|
|
|
display: inline-block;
|
2021-05-08 18:04:44 +02:00
|
|
|
border: 1px solid #333;
|
2021-11-17 17:28:52 +01:00
|
|
|
border-radius: var(--h);
|
2021-04-10 00:17:15 +02:00
|
|
|
font-size: 6vmin;
|
2020-05-17 20:59:00 +02:00
|
|
|
height: var(--h);
|
2021-11-28 04:01:58 +01:00
|
|
|
width: calc(100% - 40px);
|
2021-05-08 18:04:44 +02:00
|
|
|
margin-top: 2vh;
|
2018-01-27 23:28:20 +01:00
|
|
|
}
|
2016-09-11 23:07:18 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
2021-11-28 01:21:17 +01:00
|
|
|
<body>
|
2018-06-24 01:20:15 +02:00
|
|
|
<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>
|
2021-04-10 00:17:15 +02:00
|
|
|
<form action="/settings/um"><button type="submit">Usermods</button></form>
|
2018-02-20 22:29:48 +01:00
|
|
|
<form action="/settings/sec"><button type="submit">Security & Updates</button></form>
|
2016-09-11 23:07:18 +02:00
|
|
|
</body>
|
|
|
|
</html>
|