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>
@ -160,7 +166,7 @@
} }
</pre> </pre>
<h3>Address</h3> <h3 class="hightlight_h">Address</h3>
<h4>Get Address</h4> <h4>Get Address</h4>
@ -184,7 +190,7 @@
} }
</pre> </pre>
<h3>Application Status</h3> <h3 class="hightlight_h">Application Status</h3>
<h4>Get Information</h4> <h4>Get Information</h4>
@ -265,7 +271,7 @@
} }
</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>
@ -300,8 +306,12 @@
} }
</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>