Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
28 changes: 28 additions & 0 deletions flask_logging_server/static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,34 @@ footer {
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#logs-table th {
padding: 10px 15px;
white-space: nowrap;
position: sticky;
top: 0;
background-color: #f4f4f4;
z-index: 1;
border-right: 1px solid #ddd;
font-weight: bold;
min-width: fit-content;
}

#logs-table {
table-layout: auto;
min-width: 100%;
border-spacing: 0;
border-collapse: separate;
}

#logs-container {
overflow-x: auto;
padding: 20px;
background-color: white;
margin: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
h1 {
font-size: 1.5em;
Expand Down
9 changes: 8 additions & 1 deletion flask_logging_server/templates/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,14 @@ <h1>Welcome to DICOMHawk</h1>
</ul>
</nav>
<footer>
<p>&copy; 2024 DICOMHawk. All rights reserved.</p>
<div style="display: flex; justify-content: space-between; align-items: center; padding: 0 20px;">
<p>&copy; 2024 DICOMHawk. All rights reserved.</p>
<div style="display: flex; gap: 20px;">
<a href="https://github.com/honeynet/DICOMHawk" style="color: white; text-decoration: none;" target="_blank">GitHub</a>
<a href="https://github.com/honeynet/DICOMHawk#readme" style="color: white; text-decoration: none;" target="_blank">Documentation</a>
<span>v1.0.0</span>
</div>
</div>
</footer>
</div>
<script>
Expand Down