Skip to content

Commit

Permalink
Simplify the Dev tools ui
Browse files Browse the repository at this point in the history
  • Loading branch information
apoorv-2204 committed Feb 24, 2023
1 parent 6a5be6b commit 30a634b
Show file tree
Hide file tree
Showing 3 changed files with 542 additions and 3 deletions.
54 changes: 54 additions & 0 deletions index.html
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>
Loading

0 comments on commit 30a634b

Please sign in to comment.