Skip to content

Commit aa2b7e8

Browse files
Merge pull request #385 from Soumyadipgithub/main
Update the "versions.html" page
2 parents cb5bff9 + a76656b commit aa2b7e8

File tree

2 files changed

+45
-18
lines changed

2 files changed

+45
-18
lines changed

website/pages/versions.html

Lines changed: 35 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@
77
<link rel="shortcut icon" href="../web_images/3dlogo.svg" type="image/x-icon">
88
<link rel="stylesheet" href="../styles/style.css">
99
<title>Dataverse | Versions</title>
10+
<style>
11+
.center-text {
12+
display: flex;
13+
justify-content: center; /* Centers horizontally */
14+
align-items: center; /* Centers vertically */
15+
height: 160px; /* Set a specific height for the container */
16+
}
17+
h2 {
18+
padding-top: 50px; /* Adjust top padding */
19+
padding-bottom: 0px; /* Adjust bottom padding */
20+
}
21+
</style>
1022
</head>
1123

1224
<body>
@@ -78,22 +90,31 @@
7890
</tr>
7991
</table>
8092
</div>
93+
<div class="center-text"><h2>Dataverse VERSIONS</h2></div>
8194
<table id="versions">
82-
<th>
83-
Versions
84-
</th>
85-
<tr>
86-
<td>v.XM45'24</td>
87-
</tr>
88-
<tr>
89-
<td>v.6550(24)</td>
90-
</tr>
91-
<tr>
92-
<td>v.06.02.24</td>
93-
</tr>
95+
<thead>
96+
<tr>
97+
<th>Version</th>
98+
<th>Description</th>
99+
</tr>
100+
</thead>
101+
<tbody>
102+
<tr>
103+
<td>v.XM45.24 <span class="status highlight">Under Development</span></td>
104+
<td class="description">High scale installable version currently being developed. It has an improved UI based on glassmorphism, making the project mobile-friendly and providing more analytical features. This version seeks major contributions through SWOC-S5.</td>
105+
</tr>
106+
<tr>
107+
<td>v.6550.24 <span class="status highlight">Latest</span></td>
108+
<td class="description">Current stable version that supports most of the data visualization techniques and finance tracking. Major development done during GSSoC'24.</td>
109+
</tr>
110+
<tr>
111+
<td>v.06.02.24</td>
112+
<td class="description">Initial version developed on 6th February, 2024. Only supports finance tracking.</td>
113+
</tr>
114+
</tbody>
94115
</table>
95-
96116
<script src="../scripts/script.js" type="module"></script>
117+
<a href="../../index.html"><button class="goBack">Go To Home</button></a>
97118
</body>
98119

99-
</html>
120+
</html>

website/styles/style.css

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,18 +1197,24 @@ input {
11971197

11981198
#versions{
11991199
width: 50vw;
1200-
margin-top: 70px;
1201-
border: 1px solid rgba(128, 128, 128, 0.352);
1202-
margin-left: 20px;
1200+
margin-top: 0px;
1201+
border: 2px solid rgba(128, 128, 128, 0.352);
1202+
margin-left: auto;
1203+
margin-right: auto;
12031204
}
12041205
#versions td{
12051206
padding: 10px;
12061207
border: 1px solid rgba(128, 128, 128, 0.352);
1208+
text-align: justify;
12071209
}
12081210
#versions th{
12091211
padding: 10px;
12101212
border: 1px solid rgba(128, 128, 128, 0.352);
12111213
}
1214+
.highlight {
1215+
font-weight: bold;
1216+
color: #ff4500;
1217+
}
12121218

12131219
/*===========================RESPONSIVE===================================*/
12141220
@media screen and (max-width: 660px) {
@@ -1508,4 +1514,4 @@ input {
15081514

15091515
#codeOfconduct a:hover {
15101516
text-decoration: underline;
1511-
}
1517+
}

0 commit comments

Comments
 (0)