Spaces:
Paused
Paused
File size: 1,466 Bytes
053f1ba 507e2ff 8b454b3 053f1ba 507e2ff 053f1ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
/*
a {
color: #69C;
text-decoration: none;
}
a:hover {
color: #F60;
}
h1 {
font: 1.7em;
line-height: 110%;
color: #000;
}
p {
margin: 0 0 20px;
}
input {
outline: none;
}
*/
#tomeasureSearchInput,#relevantSearchInput {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
font-family: inherit;
font-size: 100%;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
display: none;
}
#tomeasureSearchInput,#relevantSearchInput{
background: url(https://static.tumblr.com/ftv85bp/MIXmud4tx/search-icon.png) no-repeat 9px center;
/* border: solid 1px #ccc; */
padding: 9px 7px 9px 32px;
width:0;
height: 6px;
-webkit-border-radius: 10em;
-moz-border-radius: 10em;
border-radius:3px;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
margin-left: 18ch ;
margin-top: 6px;
border: none;
right: 0;
}
#relevantSearchInput{
margin-left: 172px;
}
#tomeasureSearchInput:focus , #relevantSearchInput:focus {
width: 191px;
background-color: #fff;
border-color: #1b1d1c;
box-shadow: 0 0 5px rgba(109, 207, 246, .5);
}
#relevantSearchInput:focus {
width:165px;
}
/* input:-moz-placeholder {
color: #999;
} */
/* input::-webkit-input-placeholder {
color: #999;
} */
/*
#myForm {
position: relative;
width: 160px;
} */
/* #myForm input[type=search] {
position: absolute;
/* right: 0; */
/* } */ |