Implemented some placeholder stuff to the shadowbox tab

This commit is contained in:
2023-03-29 16:41:10 -04:00
parent 873e7f72ff
commit 1b0753912a
3 changed files with 23 additions and 7 deletions

BIN
Paradox_3-19-2023.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 KiB

View File

@@ -59,7 +59,7 @@
</div>
</div>
<!-- Personnel File -->
<div class="content shown">
<div class="content">
hello
</div>
<!-- Activity History -->
@@ -67,8 +67,10 @@
hello2
</div>
<!-- Shadowbox -->
<div class="content">
hello3
<div class="content shown">
<div id="shadowboxContainer">
<img src="../Paradox_3-19-2023.jpg">
</div>
</div>
</div>
</body>

View File

@@ -179,3 +179,17 @@ p {
.shown {
display: flex !important;
}
#shadowboxContainer {
display: flex;
justify-content: center;
align-items: center;
padding-top: 50px;
}
#shadowboxContainer > img {
max-height: 100%;
max-width: 100%;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}