-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (53 loc) · 821 Bytes
/
style.css
File metadata and controls
61 lines (53 loc) · 821 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background: #262a2f;
}
.search-box {
width: 600px;
background: #fff;
margin: 200px auto 0;
border-radius: 5px;
}
.row{
display: flex;
align-items: center;
padding: 10px 20px;
}
input{
flex: 1;
background: transparent;
outline: 0;
border: 0;
color: #333;
height: 50px;
}
button{
height: 100%;
border: 0;
outline: 0;
background: transparent;
padding: 20px 10px;
}
button img {
width: 30px;
}
.result ul {
border-top: 1px solid #999;
padding: 15px 10px;
}
.result ul li {
border-radius: 5px;
list-style: none;
padding: 15px 10px;
cursor: pointer;
}
.result ul li:hover{
background: #e9f3ff;
}
.search-box {
overflow-y: scroll;
}