Merge pull request #241 from colkito/feature/powered-homepage

added powered by
This commit is contained in:
Gustavo Maximiliano Cortez 2014-02-11 18:09:43 -02:00
commit 4d2a97bb33
5 changed files with 54 additions and 20 deletions

BIN
public/img/angularjs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
public/img/leveldb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
public/img/nodejs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -515,3 +515,45 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
#home .btn-more .btn-default {
margin-top: -23px;
}
#powered .powered-text {
border-top: 1px solid #ddd;
margin: 30px auto 0;
text-align: center;
width: 90%;
}
#powered .powered-text small {
background-color: #f4f4f4;
padding: 4px;
position: relative;
top: -12px;
}
#powered a {
background-repeat: no-repeat;
background-position: center center;
display: inline-block;
float: left;
height: 45px;
}
#powered a.bitcore {
background-image: url('http://bitcore.io/images/logo.svg');
background-size: 80px;
width: 30%;
}
#powered a.nodejs {
background-image: url('/img/nodejs.png');
background-size: 80px;
width: 30%;
}
#powered a.angularjs {
background-image: url('/img/angularjs.png');
background-size: 50px;
width: 20%;
}
#powered a.leveldb {
background-image: url('/img/leveldb.png');
background-size: 50px;
width: 20%;
}

View File

@ -58,28 +58,20 @@
<div class="col-xs-12 col-md-4 col-gray">
<h2> About </h2>
<p> Insight is an open-source Bitcoin blockchain explorer with complete REST
<p>Insight is an open-source Bitcoin blockchain explorer with complete REST
and websocket APIs that can be used for writing web wallets and other apps
that need more advanced blockchain queries than provided by bitcoind RPC.
Check out the <a href="http://github.com/bitpay/insight" target="_blank">source code</a>.
<p> Powered by
<p class="text-center">
<a href="http://bitcore.io/"><img src="http://bitcore.io/images/logo.svg" width="150px"></a>
<p class="text-center">
<a href="https://code.google.com/p/leveldb/">LevelDB</a>
&middot;
<a href="http://angularjs.org/">AngularJS</a>
&middot;
<a href="http://www.nodejs.org">NodeJS</a>
<p>
Insight is still in development, so be sure to report any bugs
and provide feedback for improvement at our <a href="https://github.com/bitpay/insight/issues">
github issue tracker</a>.
</p>
Check out the <a href="http://github.com/bitpay/insight" target="_blank">source code</a>.</p>
<p>Insight is still in development, so be sure to report any bugs and provide feedback for improvement at our <a href="https://github.com/bitpay/insight/issues">github issue tracker</a>.</p>
<div id="powered" class="row">
<div class="powered-text">
<small class="text-muted">Powered by</small>
</div>
<a href="http://bitcore.io" target="_blank" class="bitcore" title="Bitcore"></a>
<a href="http://angularjs.org" target="_blank" class="angularjs" title="AngularJS"></a>
<a href="https://code.google.com/p/leveldb/" target="_blank" class="leveldb" title="LevelDB"></a>
<a href="http://nodejs.org" target="_blank" class="nodejs" title="NodeJs"></a>
</div>
</div> <!-- END OF COL-3 -->
</div>
</div>