-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (82 loc) · 1.85 KB
/
styles.css
File metadata and controls
89 lines (82 loc) · 1.85 KB
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
85
86
87
88
89
body{
background-color: #F7F6F2;
font-family: Arial, sans-serif;
color: #333333;
padding: 0;
margin: 0;
}
.header-container{
background-image: url("https://images.unsplash.com/photo-1757752462906-62c319c5082d?q=80&w=1160&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
background-repeat: no-repeat;
background-size: cover;
background-position: left;
height: 100vh;
max-width: 100%;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
.wrapper{
background-color: rgba(255, 255, 255, 0.8);
padding: 20px;
border-radius: 10px;
text-align: left;
max-width: 600px;
padding: 50px;
}
#search-section{
display: flex;
justify-content: center;
align-items: start;
flex-flow: wrap;
border-radius: 3px;
background-color: #F5E6D3;
height: 100vh;
overflow: visible;
}
.search-box{
display: flex;
justify-content: center;
margin-top: 30px;
width: 100%;
position: relative;
}
#search-input{
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid #2E7D32;
color: #333333;
width: 50%;
}
#suggestions-list {
position: absolute;
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid #2E7D32;
border-top: none;
top: 100%;
width: 50%;
max-height: 200px;
overflow-y: auto;
z-index: 1000;
list-style: none;
}
#suggestions-list li {
padding: 8px 12px;
cursor: pointer;
}
#suggestions-list li:hover {
background: #A5D6A7;
}
.button, #search-button{
background-color: #2E7D32;
color: #F5E6D3 ;
padding: 5px 10px;
border: none;
}
.button:hover, #search-button:hover{
background-color: #A5D6A7;
color: #333333;
transform:scale(1,1.15);
cursor: pointer;
border-radius: 3px;
}