At http://ccachicago.pragmatometer.com, I have the following media query in the stylesheet, meant to stack menu items vertically and bump up the font size:
@media (handheld, only screen and (max-width: 1023px))
{
div, p
{
font-size: 36px !important;
}
#navigation > li
{
display: block;
}
}
I want to do more than this in terms of responsive design, but right now I don't have a working smoke test. I've reloaded the page a few times, and it seems to display the menu items inline, horizontal-wise, and the text does not appear enlarged for text in P's.
How can I change the font size and block/inline display for <1024px-wide displays?