-
Notifications
You must be signed in to change notification settings - Fork 3
/
search.css
64 lines (64 loc) · 1.7 KB
/
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
/* CSS for the search feature */
.search-container {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #161f27;
color: #fff;
border: 1px solid #ffffff;
border-radius: 10px;
padding: 10px;
display: flex;
align-items: center;
width: 300px;
z-index: 2;
}
.search-input {
background-color: transparent;
color: #fff;
border: none;
outline: none;
flex: 1;
border-radius: 10px;
padding: 8px
}
.search-icon {
margin-right: 10px;
}
.search-results {
display: none;
position: fixed;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
background-color: #161f27;
color: #fff;
border: 1px solid #ffffff;
border-radius: 10px;
padding: 10px;
width: 300px;
height: 180px;
z-index: 1;
}
.search-results-title {
margin-top: 4px;
margin-left: 7px;
font-size: 20px;
text-decoration: bold;
}
.game-section {
margin-top: 13px;
margin-left: 3px;
padding-left: 7px;
border-left: 3px solid #fff;
}
.game-section:hover {
text-decoration: underline;
}
.close-button {
position: absolute;
top: 5px;
right: 5px;
cursor: pointer;
}