-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooking.css
More file actions
56 lines (53 loc) · 970 Bytes
/
booking.css
File metadata and controls
56 lines (53 loc) · 970 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
p {
margin-top: 0;
margin-bottom: 0;
}
main{
width: calc(100%-200px);
margin: 0 100px;
height: auto;
border-radius: 2rem;
border: 1px solid var(--extra-light);
box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
padding: 15px 0px;
}
#toandfro{
margin: 18px 50px;
height: auto;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 1rem;
}
#land, #dep{
font-size: 2.5rem;
}
#flight_content{
/* display: grid; */
grid-template-columns: 1fr;
/* margin: auto; */
text-align: center;
}
#flight_content p {
font-size: 1.5rem;
margin-top: 0px;
margin-bottom: 0px;
}
#flight_content button{
padding: .75rem 2rem;
outline: none;
border: none;
font-size: 1rem;
font-weight: 500;
color: var(--extra-light);
background-color: #1c96c5;
border-radius: 1rem;
cursor: pointer;
transition: 0.3s;
width: 150px;
margin-top: 2rem;
}
#flight_content button:hover{
background-color: var(--primary-color-dark);
}