-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a5be6b
commit 30a634b
Showing
3 changed files
with
542 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>Dev-only</title> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"> | ||
<style> | ||
body { | ||
background: linear-gradient(-30deg, #00a4db 30%, #006cd2 70%); | ||
min-height: 100vh; | ||
padding-bottom: 20px; | ||
} | ||
|
||
.wrapper { | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
grid-gap: 10px; | ||
grid-auto-rows: minmax(100px, auto); | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="container margin-top-6"> | ||
<div class="columns"> | ||
<div class="column"> | ||
<h1 class="is-size-2 has-text-white">Archethic Developer Tools</h1> | ||
</div> | ||
</div> | ||
|
||
<div class="columns"> | ||
<div class="column"> | ||
<div class="box" style="display: flex; justify-content: space-evenly;"> | ||
<a target="content" href="example/addressGenerator/index.html">Address-Generator</a> | ||
|
||
<a target="content" href="example/browserConnect/">browserConnect</a> | ||
|
||
<a target="content" href="example/keychain/index.html">Keychain</a> | ||
|
||
<a target="content" href="example/publicKeyGenerator/index.html">publicKeyGenerator</a> | ||
|
||
<a target="content" href="example/transactionBuilder/index.html">transactionBuilder</a> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<iframe name="content" id="content" width="100%" height="3000px" frameborder="0"></iframe> | ||
|
||
</body> | ||
|
||
|
||
</html> |
Oops, something went wrong.