fixed position of download app link
This commit is contained in:
parent
fe14cd88f0
commit
5db80ac0d4
3 changed files with 9 additions and 7 deletions
|
@ -233,7 +233,3 @@ CREATE TABLE `PriceHistory`
|
||||||
PRIMARY KEY `PK_PriceHistory` (`Id`),
|
PRIMARY KEY `PK_PriceHistory` (`Id`),
|
||||||
UNIQUE KEY `Idx_PriceHistoryCreated` (`Created`)
|
UNIQUE KEY `Idx_PriceHistoryCreated` (`Created`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=4;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=4;
|
||||||
|
|
||||||
ALTER TABLE Claims ADD UNIQUE KEY `Idx_ClaimUnique` (`TransactionHash`, `Vout`, `ClaimId`);
|
|
||||||
ALTER TABLE Addresses ADD COLUMN `Balance` DECIMAL(18,8) AS (`TotalReceived` - `TotalSent`) PERSISTENT AFTER `TotalSent`;
|
|
||||||
ALTER TABLE Addresses ADD INDEX `Idx_AddressBalance` (`Balance`);
|
|
|
@ -114,10 +114,15 @@
|
||||||
<div class="home-container-cell">
|
<div class="home-container-cell">
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<div class="title">LBRY Block Explorer</div><br>
|
<div class="title">LBRY Block Explorer</div><br>
|
||||||
<div class="links"><a href="https://lbry.io/get">Download the LBRY App</a></div>
|
|
||||||
<form method="get" action="/find">
|
<form method="get" action="/find">
|
||||||
<input class="search-input" name="q" type="text" placeholder="Enter a block height or hash, claim id or name, transaction hash or address" />
|
<input class="search-input" name="q" type="text" placeholder="Enter a block height or hash, claim id or name, transaction hash or address" />
|
||||||
<div class="ctls"><button class="btn btn-search">Search</button> <div class="links"><a href="/realtime">Realtime</a> • <a href="/stats" class="last">Stats</a></div></div>
|
<div class="ctls">
|
||||||
|
<div class="left-links"><a href="https://lbry.io/get">Download the LBRY App</a></div>
|
||||||
|
<button class="btn btn-search">Search</button>
|
||||||
|
<div class="right-links">
|
||||||
|
<a href="/realtime">Realtime</a> • <a href="/stats" class="last">Stats</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,8 @@ border-radius: 0 6px 8px 0 }
|
||||||
.home-container-cell .ctls { width: 720px; text-align: center; margin: 24px auto; position: relative }
|
.home-container-cell .ctls { width: 720px; text-align: center; margin: 24px auto; position: relative }
|
||||||
.home-container-cell .ctls .btn-search { font-size: 115%; display: inline-block; padding: 12px 48px; background: #1e88e5; color: #fff; border-radius: 8px; border: none; font-weight: 300; cursor: pointer }
|
.home-container-cell .ctls .btn-search { font-size: 115%; display: inline-block; padding: 12px 48px; background: #1e88e5; color: #fff; border-radius: 8px; border: none; font-weight: 300; cursor: pointer }
|
||||||
.home-container-cell .ctls .btn-search:hover { background: #1976d2 }
|
.home-container-cell .ctls .btn-search:hover { background: #1976d2 }
|
||||||
.home-container-cell .ctls .links { display: inline-block; font-weight: 300; position: absolute; right: 0; padding-top: 12px; }
|
.home-container-cell .ctls .left-links { display: inline-block; font-weight: 300; position: absolute; left: 0; padding-top: 12px; }
|
||||||
|
.home-container-cell .ctls .right-links { display: inline-block; font-weight: 300; position: absolute; right: 0; padding-top: 12px; }
|
||||||
.home-container-cell .ctls a { font-size: 115%; display: inline-block; margin-right: 12px }
|
.home-container-cell .ctls a { font-size: 115%; display: inline-block; margin-right: 12px }
|
||||||
.home-container-cell .ctls a.last { margin-left: 12px; margin-right: 0 }
|
.home-container-cell .ctls a.last { margin-left: 12px; margin-right: 0 }
|
||||||
.home-container-cell .ctls a:hover { text-decoration: none; color: #1976d2 }
|
.home-container-cell .ctls a:hover { text-decoration: none; color: #1976d2 }
|
||||||
|
|
Loading…
Reference in a new issue