color in developer: titles

This commit is contained in:
Gustavo Cortez 2014-02-03 10:35:12 -03:00
parent da75d543f2
commit c4a05c1060
2 changed files with 47 additions and 27 deletions

View File

@ -33,6 +33,12 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
.vm { vertical-align: middle; } .vm { vertical-align: middle; }
.hightlight_h {
color: blue;
padding-bottom: 5px;
border-bottom: 1px solid #eee;
}
.navbar-default { .navbar-default {
background-color: #8DC429; background-color: #8DC429;
border-bottom: 4px solid #64920F; border-bottom: 4px solid #64920F;
@ -68,6 +74,10 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
} }
} }
.nav-tabs.nav-justified>li>a:hover {
cursor: pointer;
}
.insight { .insight {
font-family: 'Ubuntu', sans-serif; font-family: 'Ubuntu', sans-serif;
font-size: 34px; font-size: 34px;

View File

@ -4,14 +4,20 @@
Developers <small>API Documentation</small> Developers <small>API Documentation</small>
</h1> </h1>
</div> </div>
<tabset justified="true">
<tab heading="Overview">
<h2>Overview</h2> <h2>Overview</h2>
<p>The Insight REST API provides you with a convenient, powerful and simple way to read data from the bitcoin network and build your own services with it.</p> <p>The Insight REST API provides you with a convenient, powerful and simple way to read data from the bitcoin network and build your own services with it.</p>
<p>The REST API currently only supports JSON for the response formats.</p> <p>The REST API currently only supports JSON for the response formats.</p>
<p>The API is free to use.</p> <p>The API is free to use.</p>
</tab>
<tab heading="API Reference">
<h2>API Reference</h2> <h2>API Reference</h2>
<h3>Blocks</h3> <h3 class="hightlight_h">Blocks</h3>
<h4>Get Block</h4> <h4>Get Block</h4>
@ -80,7 +86,7 @@
blockHash: "000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943" blockHash: "000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943"
}</pre> }</pre>
<h3>Transactions</h3> <h3 class="hightlight_h">Transactions</h3>
<h4>Get Transaction</h4> <h4>Get Transaction</h4>
@ -128,7 +134,7 @@
valueOut: 50.0017, valueOut: 50.0017,
size: 108 size: 108
} }
</pre> </pre>
<h4>Get Transactions by BlockHash</h4> <h4>Get Transactions by BlockHash</h4>
@ -143,7 +149,7 @@
pagesTotal: 2, pagesTotal: 2,
txs: [ Array of Transactions ] txs: [ Array of Transactions ]
} }
</pre> </pre>
<h4>Get Transactions by String Address</h4> <h4>Get Transactions by String Address</h4>
@ -158,9 +164,9 @@
pagesTotal: 4, pagesTotal: 4,
txs: [ Array of Transactions ] txs: [ Array of Transactions ]
} }
</pre> </pre>
<h3>Address</h3> <h3 class="hightlight_h">Address</h3>
<h4>Get Address</h4> <h4>Get Address</h4>
@ -182,9 +188,9 @@
balance: 50.31766, balance: 50.31766,
totalReceived: 58.53132 totalReceived: 58.53132
} }
</pre> </pre>
<h3>Application Status</h3> <h3 class="hightlight_h">Application Status</h3>
<h4>Get Information</h4> <h4>Get Information</h4>
@ -213,7 +219,7 @@
errors: "This is a pre-release test build - use at your own risk - do not use for mining or merchant applications" errors: "This is a pre-release test build - use at your own risk - do not use for mining or merchant applications"
} }
} }
</pre> </pre>
<h4>Get Difficulty</h4> <h4>Get Difficulty</h4>
@ -227,7 +233,7 @@
{ {
difficulty: 1 difficulty: 1
} }
</pre> </pre>
<h4>Get TxOutSetInfo</h4> <h4>Get TxOutSetInfo</h4>
@ -249,7 +255,7 @@
total_amount: 8900499.25420614 total_amount: 8900499.25420614
} }
} }
</pre> </pre>
<h4>Get Last Block Hash</h4> <h4>Get Last Block Hash</h4>
@ -263,9 +269,9 @@
{ {
lastblockhash: "00000000fc182ffd65fa397dbe0c60b1932bee4ccef407b36b7d6d9d5fdb5962" lastblockhash: "00000000fc182ffd65fa397dbe0c60b1932bee4ccef407b36b7d6d9d5fdb5962"
} }
</pre> </pre>
<h3>Server Information</h3> <h3 class="hightlight_h">Server Information</h3>
<h4>Get information of Bitcoin synchronization</h4> <h4>Get information of Bitcoin synchronization</h4>
@ -284,7 +290,7 @@
syncedBlocks: 178011, syncedBlocks: 178011,
error: null error: null
} }
</pre> </pre>
<h4>Get API Version</h4> <h4>Get API Version</h4>
@ -298,10 +304,14 @@
{ {
version: "0.0.1" version: "0.0.1"
} }
</pre> </pre>
</tab>
<tab heading="Sandbox">
<h2>Sandbox for test API</h2> <h2>Sandbox for test API</h2>
<p>API live documentation</p> <p>API live documentation</p>
</tab>
</section> </section>