62 lines
666 B
CSS
62 lines
666 B
CSS
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%;
|
|
}
|