Fixed Buttons at bottom to be better possitioned

This commit is contained in:
2025-10-18 01:14:11 -05:00
parent eae583ae8e
commit a4d34f29d2
2 changed files with 29 additions and 5 deletions

View File

@ -49,7 +49,8 @@
We have a degree in computer science and we feel like all I can do with it now is use it to make art. <wbr> We have a degree in computer science and we feel like all I can do with it now is use it to make art. <wbr>
We have an unofficial count of 47 of us in this body and getting to do stuff we all want to do is a challenge. <wbr> We have an unofficial count of 47 of us in this body and getting to do stuff we all want to do is a challenge. <wbr>
We hope you like all of our work and we may be open to commisions in the future.<wbr> We hope you like all of our work and we may be open to commisions in the future.<wbr>
Here are of our named members and what they have made, We hope you like them!!</p> Here are of our named members and what they have made, We hope you like them!!
</p>
<ul id="memberList"> <ul id="memberList">
<div class="collumRow"> <div class="collumRow">
<li class="member"> <li class="member">
@ -137,10 +138,17 @@
</div> </div>
</div> </div>
<div id="imageLinks"> <div id="imageLinks">
<img height="31" src="/media/neocities.png" alt="Site hosted by Neocities" > <div class="row">
<a href="https://voidwillow.neocities.org"><img src="https://voidwillow.neocities.org/media/Art/VoidSystem.png"></a> <img height="31" src="/media/neocities.png" alt="Site hosted by Neocities" >
<textarea class="siteButtonText" readonly=""><a href="https://voidwillow.neocities.org"><img src="https://voidwillow.neocities.org/media/Art/VoidSystem.png"></a></textarea> <a href="https://voidwillow.neocities.org"><img src="https://voidwillow.neocities.org/media/Art/VoidSystem.png"></a>
<p id="resolutionTag"></p> <textarea class="siteButtonText" readonly=""><a href="https://voidwillow.neocities.org"><img src="https://voidwillow.neocities.org/media/Art/VoidSystem.png"></a></textarea>
<p id="resolutionTag"></p>
</div>
<div class="remeber">
<input type="text" name="Remeber Me" id="username" placeholder="Enter Name">
<button onclick="remeberMe()" type="submit">Remember me</button>
<button onclick="forgetMe()" type="submit">Forget me</button>
</div>
</div> </div>
<script src="/javascript/simulation.js"></script> <script src="/javascript/simulation.js"></script>
</body> </body>

View File

@ -231,6 +231,12 @@ a.member{
margin: 3px; margin: 3px;
} }
#imageLinks{
display: flex;
flex-direction: column;
align-items: center;
}
@media (max-width: 800px){ @media (max-width: 800px){
div.post{ div.post{
width: auto; width: auto;
@ -242,6 +248,7 @@ a.member{
li.member{ li.member{
width: auto; width: auto;
} }
} }
@media (min-width: 1000px){ @media (min-width: 1000px){
@ -260,6 +267,15 @@ a.member{
top:15%; top:15%;
height:70%; height:70%;
} }
#imageLinks{
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
bottom: 10px;
left: 30vw;
right: 30vw;
}
} }