Page 1 of 1

wide screen support

Posted: Tue May 04, 2010 8:44 pm
by elr
hi,it would be nice if project euler site would have a wide screen support
i mean instead of begin aligned to left the main page and problems
would be aligned to center

Re: wide screen support

Posted: Fri Jan 07, 2011 2:41 pm
by aurel
I agree. In fact, this bugs me so much that I created a Greasemonkey script:

// ==UserScript==
// @name Center sites
// @namespace *
// @include http*://*
// ==/UserScript==

GM_addStyle((<><![CDATA[
body {
margin-left: auto;
margin-right: auto;
}
]]></>).toString());