Skip to content

Commit

Permalink
Refs.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielspadon committed Feb 7, 2024
1 parent e77757b commit 7b32016
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
9 changes: 8 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to AISViz!</title>
<title>AISViz Project</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="all.min.css">
<link rel="stylesheet" href="style.css">
Expand All @@ -22,6 +22,13 @@ <h1 class="fw-bold text-primary display-4 text-dark">Welcome to <a style="font-w
<a href="https://chat.openai.com/g/g-hTTH0rUBv-aisdb-assistant" class="btn btn-lg btn-outline-secondary" style="font-weight: 500;"><i class="fas fa-solid fa-robot"></i> Chatbot</a>
<a href="mailto:[email protected]" class="btn btn-lg btn-outline-secondary" style="font-weight: 500;"><i class="fas fa-envelope"></i> Contact Us</a>
</div>
<div class="citation-container">
<div class="text-center text-dark" style="font-weight: 1000; font-size: 20px"><b>ACADEMIC CONTRIBUTIONS</b></div><br>
<b class="text-center text-dark">[1]</b> Spadon, G., Kumar, J., Smith, M., Vela, S., Gehrmann, R., Eden, D., van Berkel, J., Soares, A., Fablet, R., Pelot, R. and Matwin, S., 2023. <i>Building a Safer Maritime Environment Through Multi-Path Long-Term Vessel Trajectory Forecasting</i>. <a href="https://arxiv.org/abs/2310.18948" target="_blank" class="citation-link">arXiv preprint arXiv:2310.18948</a>.
<br><br>
<!-- </div> -->
<!-- <div class="citation-container"> -->
<b class="text-center text-dark">[2]</b> Song, R., Spadon, G., Bailey, S., Pelot, R., Matwin, S., & Soares, A. (2024). <i>Gravity-Informed Deep Learning Framework for Predicting Ship Traffic Flow and Invasion Risk of Non-Indigenous Species via Ballast Water Discharge</i>. <a href="https://arxiv.org/abs/2401.13098" target="_blank" class="citation-link">arXiv preprint arXiv:2401.13098</a>.
</div>
</div>

Expand Down
23 changes: 23 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,26 @@ body {
.footer .footer-link:hover {
text-decoration: underline;
}

.citation-container {
margin-top: 20px;
background-color: rgba(108, 117, 125, 0.1); /* Light gray, almost transparent */
border-radius: 10px;
padding: 15px;
font-size: 0.9rem;
color: #495057; /* Slightly darker text for readability */
max-width: 28%; /* Control the width of the citation container */
word-wrap: break-word; /* Ensure long words do not overflow */
text-align: justify; /* Justify the text for better readability */
margin-left: auto; /* Center the container horizontally */
margin-right: auto; /* Center the container horizontally */
}

.citation-link {
color: #fff;
text-decoration: none;
}

.citation-link:hover {
text-decoration: underline;
}

0 comments on commit 7b32016

Please sign in to comment.