Skip to content

Commit

Permalink
Deploying to gh-pages from @ ebabdee 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Oct 22, 2024
1 parent 5bb6b50 commit 63dbb0d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 16 deletions.
33 changes: 25 additions & 8 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
}

.container {
width: 100% !important;
width: 90% !important;
}

}
Expand Down Expand Up @@ -2783,12 +2783,6 @@
width: 20%;
}

/* Header */

#header {
display: none;
}

/* Banner */

#banner {
Expand Down Expand Up @@ -3123,7 +3117,8 @@
/* Box */

.box.highlight {
padding-left: calc(4em + 30px);
/*padding-left: calc(4em + 30px);*/
padding-left: 0;
}

.box.post .inner {
Expand Down Expand Up @@ -3182,6 +3177,9 @@
border: solid 2px black;
transition: all 0s;
box-sizing: border-box;
min-width: 100px;
width: 100%;
margin: auto;
}

.qr-code:hover {
Expand All @@ -3198,6 +3196,25 @@
width: 80%;
}

.example-img {
width: 75%;
min-width: 200px;
}

@media screen and (max-width: 840px) {
#nav {
display: none;
}

.flex-row {
display: block;
}

.qr-code {
width: 75%;
}
}


/*
.img-link img {
Expand Down
12 changes: 4 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ <h2>Examples</h2>
<div class="row flex-row">
<section class="9u 12u(narrower)">
<div class="box highlight">
<img width="75%" class="image" src="assets/img/edenhofer_voxel.png"/>
<img width="75%" class="example-img image" src="assets/img/edenhofer_voxel.png"/>
<p>A voxelized rendering of a parsec-scale galactic 3D dustmap from <a href="https://arxiv.org/abs/2308.01295">Edenhofer et. al.</a></p>
</div>
</section>
Expand All @@ -180,7 +180,6 @@ <h2>Examples</h2>
<a class="image img-link" href="/examples/edenhofer-voxel-350.html">
<img
class="qr-code"
width="100%"
href="/examples/edenhofer-voxel-350.html"
src="/examples/edenhofer_voxel_qr_black.png"
onmouseover="this.src='/examples/edenhofer_voxel_qr_red.png'"
Expand All @@ -196,7 +195,7 @@ <h2>Examples</h2>
<div class="row flex-row">
<section class="9u 12u(narrower)">
<div class="box highlight">
<img width="75%" class="image" src="assets/img/edenhofer_isosurface.png"/>
<img width="75%" class="example-img image" src="assets/img/edenhofer_isosurface.png"/>
<p>An isosurface rendering of the same dustmap</p>
</div>
</section>
Expand All @@ -205,7 +204,6 @@ <h2>Examples</h2>
<a class="image img-link" href="/examples/edenhofer-isosurface-256-nocomp.html">
<img
class="qr-code"
width="100%"
src="/examples/edenhofer_isosurface_qr_black.png"
onmouseover="this.src='/examples/edenhofer_isosurface_qr_red.png'"
onmouseout="this.src='/examples/edenhofer_isosurface_qr_black.png'"
Expand All @@ -220,7 +218,7 @@ <h2>Examples</h2>
<div class="row flex-row">
<section class="9u 12u(narrower)">
<div class="box highlight">
<img width="75%" class="image" src="assets/img/pertau_voxel.png"/>
<img width="75%" class="example-img image" src="assets/img/pertau_voxel.png"/>
<p>A rendering of the <a href="https://iopscience.iop.org/article/10.3847/2041-8213/ac1f95">Per-Tau Shell</a>, using a voxelized method for dust clouds</a></p>
</div>
</section>
Expand All @@ -229,7 +227,6 @@ <h2>Examples</h2>
<a class="image img-link" href="/examples/pertau_voxel.html">
<img
class="qr-code"
width="100%"
src="/examples/pertau_voxel_qr_black.png"
onmouseover="this.src='/examples/pertau_voxel_qr_red.png'"
onmouseout="this.src='/examples/pertau_voxel_qr_black.png'"
Expand All @@ -244,7 +241,7 @@ <h2>Examples</h2>
<div class="row flex-row">
<section class="9u 12u(narrower)">
<div class="box highlight">
<img width="75%" class="image" src="assets/img/pertau_isosurface.png"/>
<img width="75%" class="example-img image" src="assets/img/pertau_isosurface.png"/>
<p>Another rendering of the Per-Tau shell, using isosurfaces for the dust clouds</p>
</div>
</section>
Expand All @@ -253,7 +250,6 @@ <h2>Examples</h2>
<a class="image img-link" href="/examples/pertau.html">
<img
class="qr-code"
width="100%"
src="/examples/pertau_isosurface_qr_black.png"
onmouseover="this.src='/examples/pertau_isosurface_qr_red.png'"
onmouseout="this.src='/examples/pertau_isosurface_qr_black.png'"
Expand Down

0 comments on commit 63dbb0d

Please sign in to comment.