diff options
Diffstat (limited to 'assets')
-rw-r--r-- | assets/index.css | 16 | ||||
-rw-r--r-- | assets/index.html | 5 |
2 files changed, 18 insertions, 3 deletions
diff --git a/assets/index.css b/assets/index.css index 148f818..97845c5 100644 --- a/assets/index.css +++ b/assets/index.css @@ -84,6 +84,7 @@ html, body { box-shadow: 0px 0px 2px 1px rgb(0, 0, 0); overflow: hidden; z-index: 20; + position: relative; } #play { @@ -190,7 +191,7 @@ html, body { color: #c1c1c1; } .sidebarItem > .colapse > div > svg { - margin-right:4pt; + margin-right: 4pt; color: magenta; } @@ -288,3 +289,16 @@ html, body { height:16pt; margin-left: 3pt; } + +#activity { + position: absolute; + height: 100%; + padding:3pt; + right: 4pt; + color:darkgrey; + font-family: SourceSansPro; +} + +#activity.error { + color:red; +} diff --git a/assets/index.html b/assets/index.html index 2e75101..d651178 100644 --- a/assets/index.html +++ b/assets/index.html @@ -27,9 +27,10 @@ <div class="sidebar" id="sidebar"></div> </div> <div class="footer"> + <div id="activity"></div> <button id="play">Play</button> - <span>Logged in as <b>LawnCable<b></span> - <span><progress value="22" max="100"></progress>Setting up something</span> + <span>Logged in as <b>LawnCable</b></span> + <progress id="progress" value="0" max="100"></progress> </div> </div> |