41 lines
461 B
CSS
41 lines
461 B
CSS
* {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #ccc;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
main {
|
|
background-color: #fff;
|
|
padding: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
footer {
|
|
background-color: #eee;
|
|
width: 100%;
|
|
padding: 10px;
|
|
padding-bottom: 75px;
|
|
}
|
|
|
|
#content {
|
|
max-width: 900px;
|
|
margin: auto;
|
|
}
|
|
|
|
.objecttable {
|
|
width: 100%;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.objecttable td {
|
|
border-bottom: black 1px solid;
|
|
width: 50%;
|
|
}
|
|
|
|
.objecttable td input {
|
|
width: 100%;
|
|
}
|