home.css
704 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
body {
background: black;
}
.container {
width: 60%;
margin: 10px auto;
background: #333;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.4), 0 4px 4px rgba(0, 0, 0, 0.2);
}
.container input {
text-align: center;
width: 100%;
background: transparent;
border: 0;
font-size: 30px;
color: #fff;
}
.suggestions {
border-top: 2px solid #999;
}
.suggestions > div {
padding: 15px;
font-size: 20px;
color: #fff;
border-top: 1px solid #666;
cursor: pointer;
}
.suggestions > div:hover {
background-color: #1e4dd4;
}
.emphy {
width: 50%;
margin: 40px auto;
text-align: center;
color: #fff;
}