Commit
·
5426a28
1
Parent(s):
8a0b793
fixed class name usage, and added margin bottom to css and adjusted line height
Browse files- index.html +5 -5
- style.css +2 -1
index.html
CHANGED
|
@@ -23,9 +23,9 @@
|
|
| 23 |
</div>
|
| 24 |
<div class="grid-container">
|
| 25 |
<h3 class="overview-heading"><span class="vl">Dataset</span></h3>
|
| 26 |
-
<div
|
| 27 |
-
<p>The model is trained with multi-tissue histology images based on <a href="https://warwick.ac.uk/fac/cross_fac/tia/data/hovernet/" target="_blank">CoNSeP dataset.</a></p>
|
| 28 |
-
<ul>
|
| 29 |
<li>Target: Nuclei</li>
|
| 30 |
<li>Task: Instance Segmentation</li>
|
| 31 |
<li>Modality: RGB images</li>
|
|
@@ -34,8 +34,8 @@
|
|
| 34 |
</div>
|
| 35 |
<div class="grid-container">
|
| 36 |
<h3 class="overview-heading"><span class="vl">Model Architecture</span></h3>
|
| 37 |
-
<div
|
| 38 |
-
<p>Overview approach for simultaneous nuclear instance segmentation.</p>
|
| 39 |
<img class="content-image" src="file/figures/OverviewNucleiSegmentationClassification.jpg" alt="model-architecture" />
|
| 40 |
</div>
|
| 41 |
</div>
|
|
|
|
| 23 |
</div>
|
| 24 |
<div class="grid-container">
|
| 25 |
<h3 class="overview-heading"><span class="vl">Dataset</span></h3>
|
| 26 |
+
<div>
|
| 27 |
+
<p class="overview-content">The model is trained with multi-tissue histology images based on <a href="https://warwick.ac.uk/fac/cross_fac/tia/data/hovernet/" target="_blank">CoNSeP dataset.</a></p>
|
| 28 |
+
<ul >
|
| 29 |
<li>Target: Nuclei</li>
|
| 30 |
<li>Task: Instance Segmentation</li>
|
| 31 |
<li>Modality: RGB images</li>
|
|
|
|
| 34 |
</div>
|
| 35 |
<div class="grid-container">
|
| 36 |
<h3 class="overview-heading"><span class="vl">Model Architecture</span></h3>
|
| 37 |
+
<div>
|
| 38 |
+
<p class="overview-content">Overview approach for simultaneous nuclear instance segmentation.</p>
|
| 39 |
<img class="content-image" src="file/figures/OverviewNucleiSegmentationClassification.jpg" alt="model-architecture" />
|
| 40 |
</div>
|
| 41 |
</div>
|
style.css
CHANGED
|
@@ -40,7 +40,7 @@ body {
|
|
| 40 |
.overview-content {
|
| 41 |
font-size: 14px !important;
|
| 42 |
font-weight: 400 !important;
|
| 43 |
-
line-height:
|
| 44 |
letter-spacing: 0em;
|
| 45 |
text-align: left;
|
| 46 |
}
|
|
@@ -61,6 +61,7 @@ body {
|
|
| 61 |
grid-template-columns: 1fr 2fr;
|
| 62 |
gap: 20px;
|
| 63 |
align-items: flex-start;
|
|
|
|
| 64 |
}
|
| 65 |
|
| 66 |
@media screen and (max-width: 768px) {
|
|
|
|
| 40 |
.overview-content {
|
| 41 |
font-size: 14px !important;
|
| 42 |
font-weight: 400 !important;
|
| 43 |
+
line-height: 30px !important;
|
| 44 |
letter-spacing: 0em;
|
| 45 |
text-align: left;
|
| 46 |
}
|
|
|
|
| 61 |
grid-template-columns: 1fr 2fr;
|
| 62 |
gap: 20px;
|
| 63 |
align-items: flex-start;
|
| 64 |
+
margin-bottom: 0.7em;
|
| 65 |
}
|
| 66 |
|
| 67 |
@media screen and (max-width: 768px) {
|