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