Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
do-me authored Feb 27, 2024
1 parent 3d29bf8 commit 71abbc9
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,16 @@ <h5 class="text-start">Weighted Queries</h5>

<div class="col-md-8">
<div class="form-floating">
<input id="inputText0" class="form-control w-100 inputText" type="text" value="Climate Change" />
<input id="inputText0" class="form-control w-100 inputText" type="text"
value="Climate Change" />
<label for="inputText0">Query</label>
</div>
</div>

<div class="col-md-2">
<div class="form-floating">
<input id="weight0" class="queryWeight form-control" type="number" step="0.1" value="1" min="0" />
<input id="weight0" class="queryWeight form-control" type="number" step="0.1" value="1"
min="0" />
<label for="weight0">Weight</label>
</div>
</div>
Expand All @@ -123,9 +125,18 @@ <h5 class="text-start">Weighted Queries</h5>
</div>

<div class="col-md-1 d-flex flex-column align-items-center justify-content-center">

<button class="btn btn-light queryButton" id="queryButton0" type="button" title="Add query"></button>


<button class="btn btn-light queryButton" id="queryButton0" type="button" title="Add query">
<!-- SVG Code Here -->
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-plus">
<line x1="12" y1="5" x2="12" y2="19"></line>
<line x1="5" y1="12" x2="19" y2="12"></line>
</svg>
</button>


</div>


Expand Down

0 comments on commit 71abbc9

Please sign in to comment.