Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Style Updates (Squashed) #51

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/templates/block.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <H5>Next block: <a href="/block/{{next_hash}}">{{next_hash}}</a></H5>



<table class="center">
<table class="center pure-table">
<tr>
<td>Timestamp [UCT] (epoch):</td><td>{{blk_timestamp}} ({{blk_timestamp_epoch}})</td>
<td>Age {{age_format}}:</td><td>{{blk_age}}</td>
Expand All @@ -33,7 +33,7 @@ <H5>Next block: <a href="/block/{{next_hash}}">{{next_hash}}</a></H5>
</table>

<h3>Miner reward transaction</h3>
<table class="center">
<table class="center pure-table">
<tr>
<td>hash</td>
<td>outputs</td>
Expand All @@ -55,7 +55,7 @@ <h3>Miner reward transaction</h3>

<h3>Transactions ({{no_txs}})</h3>
{{#have_txs}}
<table class="center" style="width:80%">
<table class="center pure-table" style="width:80%">
<tr>
<td>hash</td>
<td>outputs</td>
Expand All @@ -71,7 +71,7 @@ <h3>Transactions ({{no_txs}})</h3>
<td>{{sum_outputs}}</td>
<td>{{tx_fee}}</td>
<td>{{mixin}}</td>
<td>{{no_inputs}}/{{no_outputs}}</td>
<td>{{no_inputs}}/{{no_outputs}}</td>
<td>{{tx_size}}</td>
<td>{{version}}</td>
</tr>
Expand Down
11 changes: 11 additions & 0 deletions src/templates/css/pure-min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions src/templates/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
{{/refresh}}
<title>Onion Monero Blockchain Explorer</title>
<!--<link rel="stylesheet" type="text/css" href="/css/style.css">-->
<!-- INSERT PURE-MIN CSS HERE -->
<style type="text/css">
{{#css_styles}}{{/css_styles}}
</style>
Expand All @@ -23,10 +24,11 @@ <h4 style="font-size: 15px; margin: 0px">(no javascript - no cookies - no web an


<div class="center">
<form action="/search" method="get" style="width:100%; margin-top:15px" class="style-1">
<form action="/search" method="get" style="width:100%; margin-top:15px" class="pure-form">
<input type="text" name="value" size="120"
style="color: black"
placeholder="block height, block hash, transaction hash">
<input type="submit" value="Search">
<input type="submit" class="pure-button pure-button-primary" value="Search">
</form>
</div>

Expand Down