-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (71 loc) · 1.16 KB
/
style.css
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
* {
box-sizing: border-box;
}
.hidden {
display: none;
}
#autocompleteContainer {
position: relative;
margin: auto;
width: 500px;
}
#searchContainer {
margin: auto;
width: 60%;
position: relative;
}
#autocompleteContainer {
padding-top: 10px;
}
#autocompleteInput {
width: 100%;
font-size: 16px;
color: #1f4255;
height: 50px;
padding-left: 10px;
}
#autocompleteList {
width: 100%;
position: absolute;
top: 60px;
list-style-type: none;
padding: 0;
margin: 0;
border: 1px solid #ccc;
z-index: 1;
background-color: rgba(255, 255, 255, 1);
box-shadow: 0 2px 4px #eee;
}
#autocompleteList li {
padding: 5px 10px;
cursor: pointer;
font-size: 16px;
}
#autocompleteList li:hover, .highlighted {
background-color: #eee;
}
#search {
margin-top: 10px;
width: 100%;
border-collapse: collapse;
border: 1px solid #ddd;
font-size: 16px;
}
.layer {
background-color: rgba(128, 128, 128, 0.7);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#search th, #search td {
padding: 10px;
text-align: left;
}
#search tr {
border-bottom: 1px solid #ddd;
}
#search th, #search tr:hover {
background-color: #f1f1f1;
}