Skip to content

Commit

Permalink
better font
Browse files Browse the repository at this point in the history
  • Loading branch information
jasbanza committed Oct 11, 2023
1 parent f805092 commit 1dfe1a6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
3 changes: 1 addition & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h3>
>
</h3>
</header>
<br><br>
<br /><br />
<div id="walletContainer" class="hidden container">
<!-- connected wallet -->
<div>Connected Wallet:</div>
Expand All @@ -41,7 +41,6 @@ <h3>
Connect Keplr
</div>
</div>


<!-- flex for interface -->
<div
Expand Down
20 changes: 17 additions & 3 deletions docs/styles/style.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,32 @@
* {
font-family: sans-serif;
font-family: "Arial", sans-serif;
}

.hidden {
display: none !important;
}

header {
padding: 20px;
background-color: #f2f2f2;
}

header a {
color: #333;
text-decoration: none;
}

header a:hover {
text-decoration: underline;
}
.orders {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.order {
border: 1px solid #ccc;
border: 1px solid #2f2f2f;
margin: 10px;
padding: 10px;
width: calc(33% - 20px);
Expand Down Expand Up @@ -54,7 +69,6 @@
align-items: center;
margin-bottom: 20px;
}

.container > div {
margin: 10px;
}
Expand Down

0 comments on commit 1dfe1a6

Please sign in to comment.