094bdf02c4
Substantial optimizations of mobile UI Added option to save current preset cycle as boot default Added option not to use first LED in strip Realtime UI error now includes source IP address Removed /down and /cleareeprom pages Fixed bug (turning receiveDirect off would crash on UDP packet)
51 lines
921 B
HTML
51 lines
921 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>WLED Message</title>
|
|
<script>
|
|
function B() {
|
|
window.history.back();
|
|
}
|
|
function RS() {
|
|
window.location = "/settings";
|
|
}
|
|
function RP() {
|
|
top.location.href="/";
|
|
}
|
|
</script>
|
|
<style>
|
|
:root {
|
|
--aCol: #D9B310;
|
|
--bCol: #0B3C5D;
|
|
--cCol: #1D2731;
|
|
--dCol: #328CC1;
|
|
--sCol: #000;
|
|
--tCol: #328CC1;
|
|
--cFn: Verdana;
|
|
}
|
|
button {
|
|
background: var(--bCol);
|
|
color: var(--tCol);
|
|
border: 0.3ch solid var(--bCol);
|
|
display: inline-block;
|
|
filter: drop-shadow( -5px -5px 5px var(--sCol) );
|
|
font-family: var(--cFn), sans-serif;
|
|
font-size: 20px;
|
|
margin: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
body {
|
|
font-family: var(--cFn), sans-serif;
|
|
text-align: center;
|
|
background: var(--cCol);
|
|
color: var(--tCol);
|
|
line-height: 200%;
|
|
margin: 0;
|
|
background-attachment: fixed;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>Sample message.</h2>
|
|
</body>
|
|
</html>
|
|
|