added missing css

logo svg fill color changed to defaul, also added autofocus to search input. This closes #60
This commit is contained in:
mb
2020-07-23 14:18:01 +02:00
parent 13ad4e0742
commit 3c582bca5c
4 changed files with 11 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
width: 18px; width: 18px;
height: 18px; height: 18px;
vertical-align: top; vertical-align: top;
fill: red; fill: #e4154b;
} }
/*****logo section******/ /*****logo section******/

View File

@@ -49,3 +49,11 @@ forcing the font changes
body { body {
font-family: "Source Sans Pro"; font-family: "Source Sans Pro";
} }
/***
search.button
**/
.ui.search.button{
background-color:#e4154b;
}

View File

@@ -6,6 +6,7 @@
* under the terms of the MIT License; see LICENSE file for more details. * under the terms of the MIT License; see LICENSE file for more details.
*/ */
@import "variables";
@import "header"; @import "header";
@import "footer"; @import "footer";
@import "overrides"; @import "overrides";

View File

@@ -22,7 +22,7 @@
<div class="eight wide column"> <div class="eight wide column">
<form action="/search" class="ui form"> <form action="/search" class="ui form">
<div class="ui fluid big action input"> <div class="ui fluid big action input">
<input type="text" name="q" class="form-control" placeholder="{{ _("Type and press enter to search") }}"> <input type="text" name="q" autofocus="autofocus" class="form-control" placeholder="{{ _("Type and press enter to search") }}">
<button type="submit" class="ui icon search button"><i class="search icon"></i></button> <button type="submit" class="ui icon search button"><i class="search icon"></i></button>
</div> </div>
</form> </form>