10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 18:06:06 +02:00

Add border and margin to facilitate the reading of forms

This commit is contained in:
Mickaël Véril 2020-05-18 10:58:02 +02:00
parent 23fd7c0301
commit 5ceec2e6a5
2 changed files with 17 additions and 0 deletions

View File

@ -549,6 +549,7 @@ draft: false
For this, follow these steps
</p>
<form id="form_dat" action="javascript:submitdat()" method="post">
<fieldset class="main">
<fieldset>
<legend>Import custom files</legend>
<p>
@ -638,14 +639,19 @@ draft: false
<input class="range max" airia-label="Maximum value" type="number" id="T1max"
onchange="numberRangeChange(event)" max="100" value="100">
</fieldset>
</fieldset>
<input type="submit" disabled=true value="Load"></input>
</form>
<form id="form_ref">
<fieldset class="main">
<fieldset>
<legend>statistics</legend>
<p>Select a reference from <strong>already selected data</strong> (by default first is selected -it's the <abbr
title="Theoretical best estimate">TBE</abbr> if present- is already selected)</p>
<label for="sel_ref">Reference</label>
<select id="sel_ref" onchange="reloadStat()"></select>
</fieldset>
</fieldset>
</form>
<p>Now you can see the list of selected data and some statistics about these data</p>
<section id="data">

View File

@ -1,6 +1,9 @@
form fieldset.table {
display: table;
}
form {
margin-bottom: 15px;
}
ul.nestedCbList {
list-style-type: none;
padding-left: 1em;
@ -8,6 +11,14 @@ ul.nestedCbList {
form button.SelectAll {
display: block;
}
form fieldset.main {
padding: 10px;
border-style: solid;
border-width: 1px;
}
form input[type="submit"] {
margin-top:10px;
}
form label{
padding-left: 5px;
padding-right: 5px;