How I Shrunk Wiki

Wiki is sometimes too large. So I wandered what it would look like smaller. Here is some CSS that you can use to shrink your wiki.

If you like your wiki smaller, I suggest you develop real css, and share it here. This magic is but a hack:

.main { -moz-transform: scale(0.9, 0.9); -webkit-transform: scale(0.9, 0.9); -o-transform: scale(0.9, 0.9); -ms-transform: scale(0.9, 0.9); transform: scale(0.9, 0.9); -moz-transform-origin: top left; -webkit-transform-origin: top left; -o-transform-origin: top left; -ms-transform-origin: top left; transform-origin: top left; } .page { height: 111%; }

You can see this over at dev.himalayn.academy .

I needed to do this to show wiki in an embedded browser that has temporarily lost it's ability to shrink web pages.

But why stop there? How about we try shrinking wiki further. Take a look at - tiny wiki .

It makes you wander about what a grid-like layout of wiki may look like. For my part I look forwards to creating a Map Of Wiki Pages.