-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.scss
More file actions
65 lines (64 loc) · 1.3 KB
/
search.scss
File metadata and controls
65 lines (64 loc) · 1.3 KB
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
#site_search {
display: flex;
margin: 8px;
flex-grow: 1;
}
#local-search-input {
border: #fff solid 0px;
-webkit-box-shadow:inset 0 0 1px #aaa;;
-moz-box-shadow:inset 0 0 1px #aaa;;
box-shadow:inset 0 0 1px #aaa;;
background: #fcfcfc;;
}
#local-search-input:focus{
background: #337ab7;;
color: #fff;
}
#local-search-input:focus::-webkit-input-placeholder{
color: #fff;
}
#local-search-input:focus::-moz-placeholder{
color: #fff;
}
#local-search-input:focus:-ms-input-placeholder{
color: #fff;
}
#local-search-result {
left: 15%;
top: 50px;
max-height: 80%;
position: fixed;
background-color: #337ab7;;
width: 75%;
overflow-y: auto;
}
.search-result-title {
margin-top: 20px;
color: #fff;
font-weight: 700!important;
font-family: 'Open Sans Condensed',sans-serif;
font-size: 32px;
line-height: 32px;
}
.search-result-list li {
padding: 40px 50px 0 20px;
}
.search-result, .search-result-title:hover {
color: #ddd;
}
.search-keyword {
color: #fff;
font: 900 1em/1em "";
text-decoration: underline;
margin: 2px;
}
.search-result {
word-wrap: break-word;
word-break: normal;
}
@media screen and (max-width:782px)
{
#site_search, #local-search-result {
display: none;
}
}