2018-01-27 23:28:20 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html><head>
|
2018-12-06 00:27:36 +01:00
|
|
|
<meta content='width=device-width' name='viewport'>
|
2018-01-27 23:28:20 +01:00
|
|
|
<title>WLED Message</title>
|
|
|
|
<script>
|
|
|
|
function B() {
|
|
|
|
window.history.back();
|
|
|
|
}
|
2018-02-23 01:33:32 +01:00
|
|
|
function RS() {
|
|
|
|
window.location = "/settings";
|
|
|
|
}
|
|
|
|
function RP() {
|
2018-06-24 01:20:15 +02:00
|
|
|
top.location.href="/";
|
2018-02-23 01:33:32 +01:00
|
|
|
}
|
2018-01-27 23:28:20 +01:00
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
:root {
|
|
|
|
--aCol: #D9B310;
|
|
|
|
--bCol: #0B3C5D;
|
|
|
|
--cCol: #1D2731;
|
|
|
|
--dCol: #328CC1;
|
|
|
|
--sCol: #000;
|
2018-02-23 01:33:32 +01:00
|
|
|
--tCol: #328CC1;
|
|
|
|
--cFn: Verdana;
|
2018-01-27 23:28:20 +01:00
|
|
|
}
|
2019-02-17 17:11:10 +01:00
|
|
|
.bt {
|
2018-01-27 23:28:20 +01:00
|
|
|
background: var(--bCol);
|
2018-02-23 01:33:32 +01:00
|
|
|
color: var(--tCol);
|
2018-01-27 23:28:20 +01:00
|
|
|
border: 0.3ch solid var(--bCol);
|
|
|
|
display: inline-block;
|
|
|
|
filter: drop-shadow( -5px -5px 5px var(--sCol) );
|
2018-02-23 01:33:32 +01:00
|
|
|
font-family: var(--cFn), sans-serif;
|
2018-01-27 23:28:20 +01:00
|
|
|
font-size: 20px;
|
|
|
|
margin: 8px;
|
|
|
|
margin-top: 12px;
|
|
|
|
}
|
2019-02-17 17:11:10 +01:00
|
|
|
input[type=file] {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
body {
|
2018-02-23 01:33:32 +01:00
|
|
|
font-family: var(--cFn), sans-serif;
|
2018-02-20 22:29:48 +01:00
|
|
|
text-align: center;
|
|
|
|
background: var(--cCol);
|
2018-02-23 01:33:32 +01:00
|
|
|
color: var(--tCol);
|
2018-02-20 22:29:48 +01:00
|
|
|
line-height: 200%;
|
|
|
|
margin: 0;
|
|
|
|
background-attachment: fixed;
|
|
|
|
}
|
2018-01-27 23:28:20 +01:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h2>Sample message.</h2>
|
2019-02-17 17:11:10 +01:00
|
|
|
Sample detail.
|
2018-01-27 23:28:20 +01:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|