Skip to content
Merged
Changes from all 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
37 changes: 34 additions & 3 deletions view-detection.html
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,11 @@ <h2>Subcostal/Suprasternal:</h2>
.table-container {
display: flex;
justify-content: space-between;
gap: 20px; /* Space between the tables */
gap: 20px;
}
.table-section {
width: 45%;
text-align: center;
}
table {
width: 45%;
Expand All @@ -478,9 +482,8 @@ <h2>Subcostal/Suprasternal:</h2>
th {
background-color: #f2f2f2;
}
.section-title h2 {
h2 {
margin: 10px 0;
text-align: center;
}
</style>
</head>
Expand All @@ -497,6 +500,8 @@ <h2>Doppler Views:</h2>
</div>

<div class="table-container">
<div class="table-section">
<h2>Doppler Views:</h2>
<table>
<tr>
<th>View</th>
Expand Down Expand Up @@ -535,7 +540,10 @@ <h2>Doppler Views:</h2>
<td>Tissue Doppler of the right ventricular free wall</td>
</tr>
</table>
</div>

<div class="table-section">
<h2>PLAX Views:</h2>
<table>
<tr>
<th>View</th>
Expand Down Expand Up @@ -574,6 +582,29 @@ <h2>Doppler Views:</h2>
<td>Parasternal inflow view including tricuspid valve</td>
</tr>
</table>
</div>

<div class="table-section">
<h2>Subcostal Views:</h2>
<table>
<tr>
<th>View</th>
<th>Description</th>
</tr>
<tr>
<td>subcostal-heart</td>
<td>Subcostal window, focused on the heart</td>
</tr>
<tr>
<td>subcostal-ivc</td>
<td>Subcostal window, focused on the inferior vena canva</td>
</tr>
<tr>
<td>suprasternal</td>
<td>Suprasternal view</td>
</tr>
</table>
</div>
</div>


Expand Down