Major update/rewrite/recombine to get SSDP, and GrowController UI and application shell.

This commit is contained in:
David
2021-10-25 23:46:03 +00:00
parent c47c37a891
commit 4597350845
52 changed files with 4981 additions and 4990 deletions

View File

@@ -1,8 +1,12 @@
input.BigButton {
width: 150px;
padding: 20px;
height: 100px;
padding: 10px;
white-space: normal;
cursor: pointer;
text-align: center;
font-weight: bold;
font-size: 120%;
background: #3366cc;
@@ -19,3 +23,26 @@ input.BigButton:hover {
background: #000;
border: 5px solid #fff;
}
input.SmallButton {
width: 150px;
height: 50px;
padding: 10px;
white-space: normal;
cursor: pointer;
font-weight: bold;
font-size: 100%;
background: #3366cc;
color: #fff;
border: 5px solid #112233;
border-radius: 10px;
-moz-box-shadow: 6px 6px 5px #999;
-webkit-box-shadow: 6px 6px 5px #999;
box-shadow: 6px 6px 5px #999;
}
input.SmallButton:hover {
color: #ffff00;
background: #000;
border: 5px solid #fff;
}