Retooled CSS style sheet to use em instead of px.

This commit is contained in:
Jane 2019-12-27 17:28:24 -06:00
parent b6ed7980cc
commit c96a5350e7
1 changed files with 7 additions and 7 deletions

View File

@ -7,8 +7,8 @@ body {
background-color: #000000; background-color: #000000;
color: #ffffff; color: #ffffff;
font-family: Roboto; font-family: Roboto;
margin: 0 0 100px; margin: 0 0 2em;
padding: 25px; padding: 1em;
} }
main { main {
@ -58,12 +58,12 @@ table {
th, th,
td { td {
border: 1px solid; border: .09em solid;
} }
menu { menu {
background-color: #000000; background-color: #000000;
padding-bottom: 5px; padding-bottom: 3em;
width: 100%; width: 100%;
} }
@ -86,10 +86,10 @@ menu {
footer { footer {
position: absolute; position: absolute;
left: 0; left: 0em;
bottom: 0; bottom: 0em;
width: 100%; width: 100%;
height: 50px; height: 3em;
overflow: hidden; overflow: hidden;
} }