Server now returns HTML and can pass back/forth data

This commit is contained in:
Kevin
2017-09-18 15:10:01 -04:00
parent 6b56699280
commit 04279d77f0
5 changed files with 223 additions and 1 deletions

View File

@@ -0,0 +1,61 @@
body {
font-family: 'Poppins', sans-serif;
font-size: small;
}
form > p {
text-align: left;
margin-left: 10%;
}
p > select, button {
float: right;
margin-right: 20%;
}
p > input {
float: right;
margin-right: 20%;
text-align: right;
}
table {
border: none;
border collapse: collapse;
}
table td {
border-left: 1px solid #000;
padding: 0 40px 0 40px;
}
table td:first-child {
border-left: none;
}
table > tbody > tr > th {
text-align: left;
}
table > tbody > tr > td {
text-align: right;
}
h3 {
margin-left: 5%;
}
#option-terms {
/* float: right; */
}
#left-side {
float: left;
width: 33%;
}
#right-side {
float: left;
width: 66%;
}