-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Formatting : code reasoning and output
- Loading branch information
Showing
2 changed files
with
48 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,9 @@ | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | ||
<style> | ||
#content { | ||
width: 85%; | ||
width: 100%; | ||
max-width: 1200px; /* You can adjust this value according to your needs */ | ||
margin: 0 auto; /* This will center the div if the viewport is wider than max-width */ | ||
} | ||
th, td { | ||
text-align: center; | ||
|
@@ -39,6 +41,20 @@ | |
font-weight: 300; | ||
margin: 1em; | ||
} | ||
|
||
#detailsTable { | ||
width: 100%; | ||
height: auto; | ||
text-align: center; | ||
overflow: auto; /* This will add a scrollbar if the content is larger than the div */ | ||
} | ||
|
||
#modelResults { | ||
width: 100%; /* This will make the div take up the full width of its parent */ | ||
overflow: auto; /* This will add a scrollbar if the content is larger than the div */ | ||
text-align: center; | ||
overflow: auto; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
@@ -96,6 +112,7 @@ <h5 class="fw-light justify-content-center">🙏 Please cite our paper if you ar | |
|
||
|
||
<div id="modelResults"></div> | ||
<!-- Table loaded dynamically --> | ||
|
||
</div> | ||
<script src="detailsScript.js"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters