Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the "versions.html" page #385

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions website/pages/versions.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@
<link rel="shortcut icon" href="../web_images/3dlogo.svg" type="image/x-icon">
<link rel="stylesheet" href="../styles/style.css">
<title>Dataverse | Versions</title>
<style>
.center-text {
display: flex;
justify-content: center; /* Centers horizontally */
align-items: center; /* Centers vertically */
height: 160px; /* Set a specific height for the container */
}
h2 {
padding-top: 50px; /* Adjust top padding */
padding-bottom: 0px; /* Adjust bottom padding */
}
</style>
</head>

<body>
Expand Down Expand Up @@ -78,10 +90,8 @@
</tr>
</table>
</div>
<div class="center-text"><h2>Dataverse VERSIONS</h2></div>
<table id="versions">
<th>
Versions
</th>
<tr>
<td>v.XM45'24</td>
</tr>
Expand All @@ -94,6 +104,7 @@
</table>

<script src="../scripts/script.js" type="module"></script>
<a href="../../index.html"><button class="goBack">Go To Home</button></a>
</body>

</html>
</html>
9 changes: 5 additions & 4 deletions website/styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1197,9 +1197,10 @@ input {

#versions{
width: 50vw;
margin-top: 70px;
border: 1px solid rgba(128, 128, 128, 0.352);
margin-left: 20px;
margin-top: 0px;
border: 2px solid rgba(128, 128, 128, 0.352);
margin-left: auto;
margin-right: auto;
}
#versions td{
padding: 10px;
Expand Down Expand Up @@ -1515,4 +1516,4 @@ input {

#codeOfconduct a:hover {
text-decoration: underline;
}
}
Loading