I used to have a couple lines of code to help me see things a bit better in Leviathan Harpooning: something to display the game board bigger and something to leave a blank space in squares I've "missed". Would any one out there still have this so I can restore it, please?
Now that I'm making a habit of Major Drills quests again, I'm remembering how much LH really screws with my eyes.
Well hiding the missed spaces should be easy.
img[src="http://img.subeta.net/rough_water.png"] { visibility:hidden; }
Not so sure about making the board bigger without potentially messing with other parts of the site.
[edit]
I suppose the most efficient way would be to use a code similar to the above, to target all the different images the game has and set the height and width on those.
img[src="http://img.subeta.net/safe_water.png"], img[src="http://img.subeta.net/rough_water.png"], img[src*="http://img.subeta.net/battleship_tile_monster"] { height:40px; width:40px; }
I think that should work. You can of course change the numbers to your preference.
(you may need to add http: in front of the codes. for some reason that doesn't show up here and it seems to be needed for the url's to be recognized)
To get a gap between the squares, you'll just need to add padding to 's code above (by the way, image urls without 'http' didn't work for me) like this:
img[src="http://img.subeta.net/safe_water.png"] {padding:1px; height:40px; width:40px;}
img[src="http://img.subeta.net/rough_water.png"] {padding:1px; height:40px; width:40px;}
img[src*="http://img.subeta.net/battleship_tile_monster"] {padding:1px; height:40px; width:40px;}
This adds lines separating the squares, and you can make the gaps bigger by increasing the padding value.