forked from qicosmos/feather
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticle.css
More file actions
53 lines (44 loc) · 1.04 KB
/
article.css
File metadata and controls
53 lines (44 loc) · 1.04 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
/*搜索(移动端不提供此功能)*/
.search-keywords,
.search-submit {
display: none;
}
@media (min-width: 992px) {
.blog-search {
margin-bottom: 15px;
}
.search-keywords,
.search-submit {
display: inline-block;
}
.search-keywords {
width: 85%;
float: left;
}
.search-keywords > input {
border-radius: 0;
}
.search-submit {
width: 14%;
float: right;
}
.search-submit > .search-btn {
display: block;
width: 100%;
height: 36px;
background: #fff;
cursor: pointer;
float: right;
border-radius: 1px;
border: 1px solid #e2e2e2;
}
.search-submit > .search-btn:hover {
border: 1px solid #d2d2d2;
}
.search-submit > .search-btn i {
width: 13px;
line-height: 38px;
display: block;
margin: 0 auto;
}
}