From de65a5d317789a200dfff7238be34f9f3f6e8051 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 12 Jul 2024 20:54:59 +0000 Subject: [PATCH] Improve margins --- index.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 8fc97de..349ae3f 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ font-family: sans; } h1, h2, h3 { - margin-top: 0; + margin: 0 0 6px 0; line-height: 1.2; } a { color: inherit; } @@ -52,7 +52,7 @@ } .result { height: 100%; - padding: 2.5% 2.5%; + padding: 20px 30px 30px 30px !important; } .right-header { padding: 30px 30px 20px 30px !important; @@ -82,8 +82,8 @@ display: block; } .address-card { - padding: 4px 16px; - margin: 4px 8px; + padding: 15px; + margin: 15px 0; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); border-radius: 7px; background: white; @@ -95,9 +95,11 @@ overflow: hidden; display: inline-block; width: 100%; + margin-bottom: -5px; } .address-type { color: black; + margin-bottom: 2px; } .address-copy { float: right; @@ -266,7 +268,7 @@ value += "" + contents + ""; } addr_idx += 1; - addr_ty_table += "
" + value + "

"; + addr_ty_table += "
" + value + "
"; }; if (base_and_params[0].length != 0) { push_table_entry("On-Chain Non-Private Address", "", base_and_params[0]); -- 2.39.5