Compare commits
2 Commits
e6daabf16d
...
c2f566e5cd
| Author | SHA1 | Date | |
|---|---|---|---|
| c2f566e5cd | |||
| de9721c8a7 |
@ -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){
|
||||||
|
|||||||
@ -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){
|
||||||
@ -287,9 +298,4 @@ a.member{
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Footer Related*/
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user