This commit is contained in:
thePR0M3TH3AN
2024-07-29 20:09:26 -04:00
parent 0ede11b6a0
commit 1086eee7ef
2 changed files with 8 additions and 2 deletions

View File

@@ -69,6 +69,9 @@
padding: 10px; padding: 10px;
border-radius: 5px; border-radius: 5px;
margin-bottom: 20px; margin-bottom: 20px;
display: flex;
justify-content: space-around; /* Align links evenly */
align-items: center;
} }
nav a { nav a {
color: #ffffff; /* Dark mode nav link color */ color: #ffffff; /* Dark mode nav link color */
@@ -86,7 +89,7 @@
<a href="splitter.html">Splitter</a> <a href="splitter.html">Splitter</a>
<a href="reassemble.html">Reassembler</a> <a href="reassemble.html">Reassembler</a>
</nav> </nav>
<h1>eCash Text Reassembler</h1> <h1>eCash Text Reassembler</h1>
<textarea id="firstMessage" placeholder="Paste the first message (with hash and total messages) here..."></textarea> <textarea id="firstMessage" placeholder="Paste the first message (with hash and total messages) here..."></textarea>

View File

@@ -69,6 +69,9 @@
padding: 10px; padding: 10px;
border-radius: 5px; border-radius: 5px;
margin-bottom: 20px; margin-bottom: 20px;
display: flex;
justify-content: space-around; /* Align links evenly */
align-items: center;
} }
nav a { nav a {
color: #ffffff; /* Dark mode nav link color */ color: #ffffff; /* Dark mode nav link color */
@@ -97,7 +100,7 @@
<script> <script>
function splitText() { function splitText() {
const text = document.getElementById('inputText').value; const text = document.getElementById('inputText').value.trim();
const maxChunkSize = 150; const maxChunkSize = 150;
const chunks = []; const chunks = [];