27 lines
258 B
CSS
27 lines
258 B
CSS
|
|
/* demo styling */
|
||
|
|
#demo-inputs {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 1fr 1fr;
|
||
|
|
}
|
||
|
|
|
||
|
|
label {
|
||
|
|
text-align: end;
|
||
|
|
}
|
||
|
|
|
||
|
|
#enter {
|
||
|
|
grid-column: 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
#result {
|
||
|
|
margin: 1vh;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* table styling */
|
||
|
|
#result-caption {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
td {
|
||
|
|
text-align: right;
|
||
|
|
}
|