D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jupegarnica
Full window
Github gist
forcing web-site to show in landscape-portait mode only
#warning-message { display: none; } @media only screen and (orientation:portrait){ #wrapper { display:none; } #warning-message { display:block; } } @media only screen and (orientation:landscape){ #warning-message { display:none; } }