wide screen support

Announcements, comments, ideas, feedback, and "How do I... ?" questions
Post Reply
elr
Posts: 67
Joined: Thu Apr 09, 2009 9:47 am

wide screen support

Post 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
Image
aurel
Posts: 2
Joined: Fri Jan 07, 2011 2:39 pm

Re: wide screen support

Post 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());
Post Reply