diff --git a/public/css/common.css b/public/css/common.css
index 7ca093a..396601a 100644
--- a/public/css/common.css
+++ b/public/css/common.css
@@ -40,6 +40,11 @@ body {
padding-right: 15px;
}
-code {
+.code {
font-size: 80%;
}
+
+.address {
+ font-size: 10px;
+}
+
diff --git a/public/views/block.html b/public/views/block.html
index 1c89df8..98d76ac 100644
--- a/public/views/block.html
+++ b/public/views/block.html
@@ -2,72 +2,113 @@
-
- Summary
-
- - Number Of Transactions
- - --
- - Output Total
- - --
- - Estimated Transaction Volume
- - --
- - Transaction Fees
- - --
- - Height
- - {{block.height}}
- - Timestamp
- - {{block.time}}
- - Received Time
- - {{block.time}}
- - Relayed By
- - --
- - Difficulty
- - {{block.difficulty}}
- - Bits
- - {{block.bits}}
- - Size
- - {{block.size}}
- - Version
- - {{block.version}}
- - Nonce
- - {{block.nonce}}
-
-
- Hashes
-
-
- Transactions
+
+
+
+
+
+
Summary
+
+
+
+
+
+ | Number Of Transactions |
+ -- |
+
+
+ | Output Total |
+ -- |
+
+
+ | Estimated Transaction Volume |
+ -- |
+
+
+ | Transaction Fees |
+ -- |
+
+
+ | Height |
+ {{block.height}} |
+
+
+ | Timestamp |
+ {{block.time * 1000 | date:'medium'}} |
+
+
+ | Received Time |
+ -- |
+ |
+
+ | Relayed By |
+ -- |
+
+
+ | Difficulty |
+ {{block.difficulty}} |
+
+
+ | Bits |
+ {{block.bits}} |
+
+
+ | Size |
+ {{block.size}} |
+
+
+ | Version |
+ {{block.version}} |
+
+
+ | Nonce |
+ {{block.nonce}} |
+
+
+
+
+
+
+
+
+
+ Transactions Transactions contained within this block
diff --git a/public/views/transaction.html b/public/views/transaction.html
index c047b44..5c55a50 100644
--- a/public/views/transaction.html
+++ b/public/views/transaction.html
@@ -1,12 +1,15 @@