-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.css
69 lines (61 loc) · 965 Bytes
/
search.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
body {
background: #559fea;
margin: 0px;
overflow-x: hidden;
font-family: Montserrat;
}
main {
width: 100%;
max-width: 800px;
margin: auto;
box-shadow: 0 0 16px 0;
background: #fff;
min-height: calc(100vh - 84px);
padding: 42px;
}
#overlay {
background: #fff;
position: fixed;
height: 100vh;
width: 100vw;
top: 0;
left: 0;
text-align: center;
padding: 0;
vertical-align: middle;
line-height: 100vh;
box-shadow: 0 0 42px 0;
transition: all .4s ease-in-out;
}
#overlay.done {
top: -120vh;
}
#searchfield {
display: block;
position: relative;
width: 64%;
max-width: 500px;
margin: 42px auto 42px;
border: 4px solid #000;
padding: 8px;
font-size: 32px;
}
p {
width: 100%;
text-align: center;
}
#resultlist {
display: block;
width: 100%;
max-width: 800px;
margin: auto;
border-collapse: collapse;
overflow-x: auto;
}
td, th {
border: 1px solid #dddddd;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}