Fix homepage search colors

This commit is contained in:
Ryan Watters 2017-03-21 00:33:42 -05:00
parent e5e175c73b
commit ddaebc4ed0
4 changed files with 8 additions and 3 deletions

View File

@ -2,5 +2,5 @@
<i class="icon-search"></i> <i class="icon-search"></i>
</a> </a>
<form id="site-search-form" action=""> <form id="site-search-form" action="">
<input type="search" id="search-input" placeholder="Search {{.Site.Title}}..."> <input type="search" id="search-input" {{if .IsHome}} class="homepage-search"{{end}} placeholder="Search {{.Site.Title}}...">
</form> </form>

File diff suppressed because one or more lines are too long

View File

@ -17,6 +17,11 @@
} }
} }
input#search-input.homepage-search {
background-color: $hugo-white!important;
color:$base-font-color;
}
ul.animated { ul.animated {
margin-top: 0px; margin-top: 0px;
margin-bottom: 0px; margin-bottom: 0px;

File diff suppressed because one or more lines are too long