improve styling for account page

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2023-04-28 23:57:42 +00:00
parent 9703faa1fa
commit d047bd7cca

View File

@ -23,24 +23,28 @@
</div> </div>
</nav> </nav>
</header> </header>
<main class="w3-container"> <main>
<h2>Account</h2> <section class="w3-container">
<div class="flex row wrap"> <h2>Account</h2>
<p id="username">Username: </p> <div class="flex row wrap w3-card">
<p id="pool">Pool: </p> <p id="username">Username: </p>
<p id="vmid">VMID Range: </p> <p id="pool">Pool: </p>
</div> <p id="vmid">VMID Range: </p>
<table id="resource-table" class="w3-table w3-table-all" style="overflow-x: auto;"> </div>
<thead> <div class="w3-card">
<tr class="w3-black"> <table id="resource-table" class="w3-table w3-table-all" style="overflow-x: auto;">
<th>Resource</th> <thead>
<th>Used</th> <tr class="w3-black">
<th>Free</th> <th>Resource</th>
<th>Total</th> <th>Used</th>
</tr> <th>Free</th>
</thead> <th>Total</th>
<tbody></tbody> </tr>
</table> </thead>
<tbody></tbody>
</table>
</div>
</section>
</main> </main>
</body> </body>
</html> </html>