Fixed Flex and responsiveness of site for mobile

This commit is contained in:
2025-10-29 17:09:05 -05:00
parent de9721c8a7
commit c2f566e5cd

View File

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