Browse Source

- tweak homepage styling

- use default bootstrap font
fix-133-memory-crash
Dan Janosik 7 years ago
parent
commit
5c408edc68
  1. 2
      public/css/styling.css
  2. 14
      views/index.pug

2
public/css/styling.css

@ -1,5 +1,5 @@
body { body {
font: 14px 'Open Sans', "Lucida Grande", Helvetica, Arial, sans-serif; /*font: 14px 'Open Sans', "Lucida Grande", Helvetica, Arial, sans-serif;*/
} }
hr { hr {

14
views/index.pug

@ -12,12 +12,14 @@ block content
if (latestBlocks) if (latestBlocks)
h3 Latest Blocks div(class="row mt-5")
if (getblockchaininfo.initialblockdownload) div(class="col")
small (#{(getblockchaininfo.headers - getblockchaininfo.blocks).toLocaleString()} behind) h3 Latest Blocks
if (getblockchaininfo.initialblockdownload)
span(style="float: right; font-size: 75%;") small (#{(getblockchaininfo.headers - getblockchaininfo.blocks).toLocaleString()} behind)
a(href="/blocks") Browse Blocks » div(class="col")
span(style="float: right;")
a(href="/blocks") Browse Blocks »
- var blocks = latestBlocks; - var blocks = latestBlocks;

Loading…
Cancel
Save