diff --git a/website/index.html b/website/index.html index e613e65..0542569 100644 --- a/website/index.html +++ b/website/index.html @@ -12,7 +12,7 @@ - + diff --git a/website/pages/getting_started.html b/website/pages/getting_started.html index 37e8dad..c624952 100644 --- a/website/pages/getting_started.html +++ b/website/pages/getting_started.html @@ -17,26 +17,31 @@ min-width: 170px; } - #menu > div:first-child{ + #menu > .menuHeader{ color: #e3f7ff; border-bottom: 1px solid #7f878b; font-size: 1.2em; - padding: 16px 0 4px 15px; + padding: 16px 16px 4px 15px; } - #coinList{ - padding: 20px; + .menuList{ transition-duration: 200ms; } - #coinList > a{ + .menuList > a:first-child{ + margin-top: 10px; + } + + .menuList > a{ display: block; color: #e3f7ff; text-decoration: none; - padding: 5px; + padding: 7px; + padding-left: 25px; + text-transform: capitalize; } - #coinList > a:hover{ + .menuList > a:hover{ color: #f69b3a; } @@ -125,6 +130,9 @@ position: absolute; background-color: #f06350; } + #coinInfo .coinInfoName{ + text-transform: capitalize; + } #coinInfo > div:first-of-type{ font-size: 1.8em; text-align: center; @@ -175,11 +183,40 @@
- \ No newline at end of file + + + \ No newline at end of file diff --git a/website/static/main.js b/website/static/main.js index 23a88ef..3f8a05c 100644 --- a/website/static/main.js +++ b/website/static/main.js @@ -1,4 +1,3 @@ - $(function(){ var hotSwap = function(page, pushSate){ @@ -27,12 +26,5 @@ $(function(){ }); window.statsSource = new EventSource("/api/live_stats"); - statsSource.addEventListener('message', function(e){ - var stats = JSON.parse(e.data); - for (algo in stats.algos) { - $('#statsMiners'+algo).text(stats.algos[algo].workers); - $('#statsHashrate'+algo).text(stats.algos[algo].hashrateString); - } - }); }); diff --git a/website/static/style.css b/website/static/style.css index 7133db2..4b7b03b 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -4,6 +4,7 @@ html, button, input, select, textarea, .pure-g [class *= "pure-u"], .pure-g-r [c html{ background: #2d2d2d; + overflow-y: scroll; } body{