Skip to content

Commit

Permalink
Revert and replace
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Riou committed Apr 16, 2019
1 parent 736f405 commit dc4916f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 42 deletions.
6 changes: 3 additions & 3 deletions static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
.btc-testnet {
background: url(../img/btc-testnet.svg) center no-repeat;
}
.grin {
background: url(../img/grin.svg) center no-repeat;
}
.ltc {
background: url(../img/ltc.svg) center no-repeat;
}
Expand All @@ -45,9 +48,6 @@
.dash-logo {
background: url(../img/dash.svg) center no-repeat;
}
.grin {
background: url(../img/grin.svg) center no-repeat;
}
.semi {
opacity:.7;
}
Expand Down
72 changes: 33 additions & 39 deletions templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,49 +73,43 @@ <h1>Search the block chain</h1>
</div>
</div>

<div class="container">
<h2>Browse the Blockchain</h2>
<div class="row text-center">
<div class="col-lg-12">
<div class="row text-center">
<div class="col-lg-1 col-md-1 col-sm-1 col-xs-3">
<a href="{% url 'coin_overview' 'btc' %}" class="btc coin">
<span class="mpsb">Bitcoin</span>
</a>
</div>
<div class="col-lg-1 col-md-1 col-sm-1 col-xs-3">
<a href="{% url 'coin_overview' 'btc-testnet' %}" class="btc-testnet coin">
<span class="mpsb">Bitcoin Testnet</span>
</a>
</div>
<div class="col-lg-1 col-md-1 col-sm-1 col-xs-3">
<a href="{% url 'coin_overview' 'ltc' %}" class="ltc coin">
<span class="mpsb">Litecoin</span>
</a>
</div>
<div class="col-lg-1 col-md-1 col-sm-1 col-xs-3">
<div class="container">

<div class="row text-center">
<h2>Browse the Blockchain</h2>
<div class="col-lg-12">
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'btc' %}" class="btc coin">
<span class="mpsb">Bitcoin</span>
</a>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="https://grinmint.com/explorer/" class="grin coin">
<span class="mpsb">Grin</span>
</a>
</div>
<div class="col-lg-1 col-md-1 col-sm-1 col-xs-3">
<a href="{% url 'coin_overview' 'doge' %}" class="doge coin">
<span class="mpsb">Dogecoin</span>
</a>
</div>
<div class="col-lg-1 col-md-1 col-sm-1 col-xs-3">
<a href="{% url 'coin_overview' 'dash' %}" class="dash-logo coin">
<span class="mpsb">Dash</span>
</a>
</div>
<div class="col-lg-1 col-md-1 col-sm-1 col-xs-3">
<a href="{% url 'coin_overview' 'bcy' %}" class="bc-testnet coin">
<span class="mpsb">BlockCypher Testnet</span>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'ltc' %}" class="ltc coin">
<span class="mpsb">Litecoin</span>
</a>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'doge' %}" class="doge coin">
<span class="mpsb">Dogecoin</span>
</a>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'dash' %}" class="dash-logo coin">
<span class="mpsb">Dash</span>
</a>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-4">
<a href="{% url 'coin_overview' 'bcy' %}" class="bc-testnet coin">
<span class="mpsb">BlockCypher Testnet</span>
</a>
</div>
</div>
</div>

<br />
<br />
Expand Down

0 comments on commit dc4916f

Please sign in to comment.