6ebe889d5e
Improved user interface Added Nightlight user interface page Added Welcome page for new users Added 12 User Interface Themes Added option for custom theme, including font Separated settings page into 6 sub-pages Fixed Favicon not working Fixed Alexa discovery bug Added options to specify receiving brightness/color/effect from notifications Added effect intensity setting. Only experimental use by 3 effects (blink) at the moment Improved speed of Access point availability on initial setup Removed need to reboot after enabling NTP time TODO: IX bug Updating readmes
51 lines
935 B
HTML
51 lines
935 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=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>
|
|
|