Use over-under style for #right on narrow displays.

This commit is contained in:
voussoir 2017-07-20 23:08:58 -07:00
parent 463b627920
commit 0ce07b0c7b

View file

@ -74,6 +74,30 @@ body
background-color: rgba(0, 0, 0, 0.1); background-color: rgba(0, 0, 0, 0.1);
} }
@media screen and (max-width: 800px)
{
#content_body
{
flex-direction: column;
}
#right
{
width: initial;
height: 216px;
}
#right_inner
{
flex-direction: row;
position: initial;
left: initial;
right: initial;
bottom: initial;
top: initial;
width: initial;
height: 200px;
}
}
</style> </style>
</head> </head>