yosup/web/css/responsive.css
2022-11-12 14:33:51 -08:00

37 lines
501 B
CSS

@media (max-width: 800px){
/* Utility */
.vertical-hide {
display: none;
}
/* Application Framework */
#container {
flex-flow: column-reverse;
}
#content {
width: initial;
border-right: none;
}
/* Navigation */
#nav {
flex-flow: row;
border-right: none;
}
#nav > * {
flex: auto;
margin-bottom: 0;
}
/* Event */
.pfp { /* TODO sync up with userpic */
width: 44px;
height: 44px;
font-size: 2.2em;
}
/* Post Tools */
#newpost > :first-child {
width: 0;
}
}