6aa47bfd1b
Improved settings page scaling on mobile devices Added 2 new effects to web UIs
52 lines
974 B
HTML
52 lines
974 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta content='width=device-width' name='viewport'>
|
|
<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>
|
|
|