Compare commits

...

2 Commits

Author SHA1 Message Date
c2f566e5cd Fixed Flex and responsiveness of site for mobile 2025-10-29 17:09:05 -05:00
de9721c8a7 Removed Position 2025-10-29 17:01:23 -05:00
2 changed files with 21 additions and 17 deletions

View File

@ -188,8 +188,6 @@ function setup(){
background(255); background(255);
describe("A space physics simulator"); describe("A space physics simulator");
canvas.position(0,0);
//Load Entities //Load Entities
for(var i = 0; i <= Settings.entityCount; i+=1){ for(var i = 0; i <= Settings.entityCount; i+=1){

View File

@ -7,21 +7,23 @@ Date Created: 9/28/25
*/ */
/* Main Document Stylings */ /* Main Document Stylings */
*{
padding: 0;
margin: 0;
}
body { body {
color: #00ACAC; color: #00ACAC;
font-family: Verdana; font-family: Verdana;
margin: 0; margin: 0;
padding: 0;
width:100%; width:100%;
height:100%;
cursor: url('/media/Art/comet.png'), auto; cursor: url('/media/Art/comet.png'), auto;
} }
ul{
padding-left: 0;
}
a{ a{
cursor:crosshair; cursor:crosshair;
} }
@ -226,7 +228,8 @@ li.member{
padding: 10px; padding: 10px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
flex-grow:1; flex: 1 1;
} }
a.member{ a.member{
@ -242,9 +245,15 @@ a.member{
align-items: center; align-items: center;
} }
@media (max-width: 800px){
/* Footer Related*/
@media (max-width: 600px){
div.post{ div.post{
width: 40vw; width: 60vw;
} }
ul.member{ ul.member{
margin: 0 0 0 0; margin: 0 0 0 0;
@ -252,7 +261,9 @@ a.member{
li.member{ li.member{
width: auto; width: auto;
} }
div#mainview{
padding: 20px;
}
} }
@media (min-width: 1000px){ @media (min-width: 1000px){
@ -288,8 +299,3 @@ a.member{
right: 0; right: 0;
} }
} }
/* Footer Related*/