Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
CobitCoin committed Jun 25, 2018
0 parents commit d3513c1
Show file tree
Hide file tree
Showing 23 changed files with 3,455 additions and 0 deletions.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# blockchain-explorer
12 changes: 12 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
var api = 'https://blockchain.cobitcoin.io/blockapi';
var blockTargetInterval = 120;
var coinUnits = 100000;
var symbol = 'CBC';
var refreshDelay = 30000;
// pools stats by MainCoins
var networkStat = {
"cbc": [
["https://api.cobitcoin.io","pool.cobitcoin.io", "cbc"]

]
};
11 changes: 11 additions & 0 deletions css/themes/dark/bootstrap.min.css

Large diffs are not rendered by default.

120 changes: 120 additions & 0 deletions css/themes/dark/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
@import url("bootstrap.min.css");

#coinName{
text-transform: capitalize;
}
#coinIcon{
text-transform: capitalize;
width: 1.3em;
height: 1.3em;
display: inline-block;
vertical-align: middle;
color: white;
border: 2px solid white;
border-radius: 50%;
text-align: center;
margin-top: -4px;
}
body {
padding-top: 65px;
padding-bottom: 80px;
overflow-y: scroll;
}

#loading{
font-size: 2em;
}
.stats {
margin-bottom: 10px;
margin-top: 5px;
font-size: 1em;
}
.stats:last-child{
width: auto;
}
.stats > h3 > i{
font-size: 0.80em;
width: 21px;
}
.stats > div{
padding: 5px 0;
font-size: 0.85em;
}
.stats > div > .fa {
width: 25px;
}
.stats > div > span:first-of-type{
font-weight: bold;
}
#stats_updated{
opacity: 0;
height: 40px;
line-height: 40px;
color: #e8e8e8;
font-size: 0.9em;
position: absolute;
right: 10px;
top: 0;
}

footer{
position: relative;
bottom: 0;
width: 100%;
margin: 30px 0;
}

table td {
font-family: "Lucida Console", Monaco, monospace;
}

.scrollup{
opacity:0.3;
position:fixed;
bottom:50px;
right:100px;
display:none;
text-align: center;
line-height: 50px;
font-size: 50px;
-webkit-transition: color 200ms ease-in-out;
-moz-transition: color 200ms ease-in-out;
-o-transition: color 200ms ease-in-out;
-ms-transition: color 200ms ease-out;
display: none;
overflow: hidden;
}

.btn-default {
background-color: #2B3E50;
}


#block.hash, #transaction.hash {
word-break: break-all;
}

.panel-default>.panel-heading .badge {
background-color: #2B3E50;
}

.form-control {
background-color: #485563;
color: #FFF;
}

.chart-wrapper {
background-color: #384B5C;
}

.navbar .theme-switch {
background: transparent;
border: none;
line-height: 21px;
padding-top: 9.5px;
padding-bottom: 9.5px;
}

.nav-pills>li>a {
padding: 10px 10px;
}
11 changes: 11 additions & 0 deletions css/themes/white/bootstrap.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit d3513c1

Please sign in to comment.