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 {
font: 14px 'Open Sans', "Lucida Grande", Helvetica, Arial, sans-serif;
/*font: 14px 'Open Sans', "Lucida Grande", Helvetica, Arial, sans-serif;*/
}
hr {

14
views/index.pug

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

Loading…
Cancel
Save