Make the web app take up all available screen space

Had the HTML body set with absurdly huge margins. Now we have
much more space to work with. I also lengthened the button
names so that they hopefully make more sense, now that we have
more space to work with.
This commit is contained in:
Donald Burr 2015-10-19 00:01:18 -07:00
parent e9ad69cb79
commit c1001ba0fe
3 changed files with 23 additions and 18 deletions

View file

@ -1,15 +1,12 @@
body {
font: 100% "Trebuchet MS", sans-serif;
margin: 50px;
font-family: Verdana,Arial,sans-serif;
font-size: 14px;
margin: 0px;
background-color: #000000;
color: #ffffff;
}
body {
font-family: Verdana,Arial,sans-serif;
font-size: 14px;
}
p {
margin: 1em 0;
}