Update tabsSearch.css

Updated css to make search field fixed pos.
This commit is contained in:
Maxim 2017-12-15 23:05:08 -06:00 committed by GitHub
parent ae07638ac8
commit cf42127af7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 12 deletions

View File

@ -1,8 +1,17 @@
body { background: rgb(255,255,255); width: 18em; overflow-x: hidden; }
#listZone { margin-top: 0.5em; }
body {
background: rgb(255,255,255);
width: 18em;
overflow-x: hidden;
min-height: 2.5em;
}
#listZone { padding-top: 2.5em; }
#toFind {
width: 95%;
position: fixed;
top: 0.5em;
z-index: 100;
width: 90%;
background: rgb(255,255,255);
color: rgb(0,0,0);
border-style: solid;
@ -10,15 +19,6 @@ body { background: rgb(255,255,255); width: 18em; overflow-x: hidden; }
text-align: center;
padding: 0.5em;
}
#errorZone {
border-color: rgb(0,0,0);
border-style: dotted;
color: red;
margin-top: 2em;
padding-top: 0.5em;
padding-bottom: 0.5em;
text-align: center;
}
.box:hover { background-color: #3EA724; }
.box {