firmware wip - cleanup a bit, I noticed that i am aleady running out of IRAM (94% used)
This commit is contained in:
parent
651eb6b847
commit
c93933ba20
1 changed files with 103 additions and 123 deletions
|
@ -178,7 +178,8 @@ const char HTMLheaderP1[] PROGMEM = R"EOF(
|
||||||
<head>
|
<head>
|
||||||
<meta charset='UTF-8'>
|
<meta charset='UTF-8'>
|
||||||
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
||||||
<title>)EOF";
|
<title>
|
||||||
|
)EOF";
|
||||||
// page title
|
// page title
|
||||||
const char HTMLheaderP2[] PROGMEM = R"EOF(
|
const char HTMLheaderP2[] PROGMEM = R"EOF(
|
||||||
</title>
|
</title>
|
||||||
|
@ -190,29 +191,23 @@ const char HTMLheaderP2[] PROGMEM = R"EOF(
|
||||||
background-color: #1d211e;
|
background-color: #1d211e;
|
||||||
font-family: helvetica;
|
font-family: helvetica;
|
||||||
}
|
}
|
||||||
|
|
||||||
.center {
|
.center {
|
||||||
width: 60%; min-width: 420px;
|
width: 60%; min-width: 420px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5 {
|
h1, h2, h3, h4, h5 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:link, a:visited {
|
a:link, a:visited {
|
||||||
color: #04AA6D;
|
color: #04AA6D;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #64AA6D;
|
color: #64AA6D;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:active {
|
a:active {
|
||||||
color: #04AA6D;
|
color: #04AA6D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.infomsg , .warnmsg {
|
.infomsg , .warnmsg {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
@ -225,20 +220,15 @@ const char HTMLheaderP2[] PROGMEM = R"EOF(
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
.infomsg {
|
.infomsg {
|
||||||
background: #04AA6D;
|
background: #04AA6D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.warnmsg {
|
.warnmsg {
|
||||||
background: #aa4204;
|
background: #aa4204;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputShort {
|
.inputShort {
|
||||||
width: 42px;
|
width: 42px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* from https://gist.github.com/iamhelenliu/5755179 - thank you! */
|
|
||||||
.nav {
|
.nav {
|
||||||
background: #333;
|
background: #333;
|
||||||
width: 60%; min-width: 420px;
|
width: 60%; min-width: 420px;
|
||||||
|
@ -259,7 +249,6 @@ const char HTMLheaderP2[] PROGMEM = R"EOF(
|
||||||
border-top-left-radius: 3px;
|
border-top-left-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav li a , .nav span {
|
.nav li a , .nav span {
|
||||||
color: #ddd;
|
color: #ddd;
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -269,21 +258,17 @@ const char HTMLheaderP2[] PROGMEM = R"EOF(
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav li a:hover , .activeMenu , .menuTime{
|
.nav li a:hover , .activeMenu , .menuTime{
|
||||||
background: #04AA6D;
|
background: #04AA6D;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav li a:active {
|
.nav li a:active {
|
||||||
color: #cae0d0;
|
color: #cae0d0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.activeMenu {
|
.activeMenu {
|
||||||
background: #444;
|
background: #444;
|
||||||
}
|
}
|
||||||
|
|
||||||
.MenuTime {
|
.MenuTime {
|
||||||
background: #292929;
|
background: #292929;
|
||||||
}
|
}
|
||||||
|
@ -318,11 +303,6 @@ const char HTMLhelp[] PROGMEM = R"EOF(
|
||||||
Here you will get some helpful help.
|
Here you will get some helpful help.
|
||||||
)EOF";
|
)EOF";
|
||||||
|
|
||||||
const char JSreplaceStr[] PROGMEM = R"EOF(
|
|
||||||
<script>
|
|
||||||
|
|
||||||
</script>
|
|
||||||
)EOF";
|
|
||||||
|
|
||||||
const char JSconvertDateToEpoch[] PROGMEM = R"EOF(
|
const char JSconvertDateToEpoch[] PROGMEM = R"EOF(
|
||||||
<script>
|
<script>
|
||||||
|
|
Loading…
Reference in a new issue