Made color scheme consistent

This commit is contained in:
Benjamyn Love 2020-02-22 16:46:49 +11:00
parent 41e88e1ae4
commit 21d046d4e2
2 changed files with 10 additions and 5 deletions

View File

@ -30,6 +30,11 @@ aside {
color: azure;
}
.addlist {
background-color: #2a2a2a;
color: azure;
}
#logbtn {
left: 10em;
padding-top: 10px;

View File

@ -53,7 +53,7 @@
<div class="form-group row">
<label for="addlist" class="col-sm-2 col-form-label">List</label>
<div class="col-sm-10">
<input type=text class="form-control" id="addlist" type="text" name="addList" />
<input type=text class="form-control addlist" id="addlist" type="text" name="addList" />
</div>
</div>
<div class="form-group row">
@ -76,9 +76,9 @@
<form action="/post" method="POST">
<div class="form-row">
<div class="col">
<label for="usernamelist" class="col-form-label form-control">User</label>
<label for="usernamelist" class="addlist">User</label>
<select id="usernamelist" name="add2list"
class="custom-select custom-select-lg mb-3 form-control">
class="custom-select custom-select-lg mb-3 form-control addlist">
{% for userid in data["users"] %}
<option type="submit" value="{{userid[2]}}" id="addbox" name="User2list"
class="form-control">{{userid[0].title()}}</option>
@ -86,8 +86,8 @@
</select>
</div>
<div class="col">
<label for="listlist" class="col-form-label form-control">List</label>
<select id="listlist" name="listID" class="custom-select custom-select-lg mb-3 form-control">
<label for="listlist" class="addlist">List</label>
<select id="listlist" name="listID" class="custom-select custom-select-lg mb-3 form-control addlist">
{% for x in data["lists"] %}
<option type="submit" value="{{x}}" id="addbox" name="User2list" class="form-control">
{{data["lists"][x]}}</option>