-
Notifications
You must be signed in to change notification settings - Fork 2
/
search.css
97 lines (92 loc) · 1.78 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
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
90
91
92
93
94
95
96
97
#search {
width: 95%;
height: 300px;
margin:auto;
position: relative;
}
#background {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color:white;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
opacity: 0.9;
}
#background > img {
width: 100%;
height: 400px;
position: absolute;
}
#search > #uppersection > #heading > h1 {
color: black;
position: absolute;
width: 80%;
top: 20%;
margin-left: 10%;
font-weight: 500;
}
#search > #uppersection > #heading > #h1second {
top: 30%;
opacity: 1;
}
#uppersection > #heading > h1 > span {
text-decoration: line-through;
}
#lowersection {
display: flex;
background-color: white;
position: absolute;
top: 50%;
margin-left:25%;
padding: 10px;
/* justify-content: space-around; */
width: 75%;
}
/* #lowersection > #locationinput {
border: 1px solid gray;
display: flex;
align-items: center;
} */
#lowersection span {
padding: 5px;
color: gray;
}
#lowersection input {
font-size: 22px;
border: none;
padding: 5px;
}
#lowersection > #checkindiv {
display: flex;
align-items: center;
border: 1px solid gray;
width: 20%;
}
#lowersection > #checkoutdiv {
display: flex;
align-items: center;
border: 1px solid gray;
width: 20%;
}
#lowersection > #guestdiv {
border: 1px solid gray;
width: 15%;
align-items: center;
font-size: 12px;
}
#lowersection > #guestdiv > input {
width: 100%;
}
#lowersection > #submit {
padding: 5px 15px;
border: none;
background-color: #1e87f0;
cursor: pointer;
color: white;
}
#heading>h1{
text-align: center;
color:black;
}