Updated blog with image

This commit is contained in:
2025-09-25 20:55:52 -04:00
parent 7b70740e46
commit 025fe8a80b
3 changed files with 17 additions and 1 deletions

View File

@ -242,8 +242,13 @@
<p> <p>
dangrubb.net is fully functional and operating at 18% of potential. When Blog updates are posted, this score will increase to 19%. dangrubb.net is fully functional and operating at 18% of potential. When Blog updates are posted, this score will increase to 19%.
</p> </p>
<div><p></p></div>
<div class="img-container">
<img src="./src/img/CannotConnect.JPEG" alt="Cannot Connect" class="viewport-image">
</div>
<!-- partial --> <!-- partial -->
<script src="./script.js"></script> <script src="./script.js"></script>
</body> </body>
</html> </html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 MiB

View File

@ -208,4 +208,15 @@ a:focus-visible {
.column + .column { .column + .column {
color: #aa95bd; color: #aa95bd;
}
.img-container {
display: flex;
justify-content: center;
align-items: center;
}
.viewport-image {
height: 40vh; /* 60% of the viewport height */
width: auto; /* Maintain aspect ratio */
} }