78 lines
853 B
CSS
78 lines
853 B
CSS
svg {
|
|
font: 10px sans-serif;
|
|
}
|
|
|
|
line.bin {
|
|
stroke: #000;
|
|
stroke-width: 3px;
|
|
}
|
|
|
|
.axis path, .axis line {
|
|
fill: none;
|
|
stroke: #000;
|
|
shape-rendering: crispEdges;
|
|
}
|
|
|
|
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;
|
|
max-width: 140px;
|
|
}
|
|
|
|
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%;
|
|
}
|