-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
145 lines (141 loc) · 2.54 KB
/
style.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
*{
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
list-style-type: none;
}
body{
font-family: 'Roboto', sans-serif;
background:url("images/bus.png");
background-repeat: no-repeat;
background-position: center center;
background-attachment: scroll;
background-size: cover;
}
nav{
height: 50px;
width: 100%;
padding: 20px 0;
}
.container{
width: 1200px;
max-width: 85%;
margin: 0 auto;
}
nav ul{
display: flex;
justify-content: flex-end;
margin: 0px 6px;
}
nav ul li a{
color: #fff;
padding: 10px;
text-transform: uppercase;
margin-left: 30px;
}
nav ul li a:hover, a.active{
background-color: #52AF3A;
border-radius: 5px;
}
.main-content{
display: grid;
grid-template-columns: 2fr 3fr;
gap: 70px;
align-items: center;
}
.booking-content{
color: #fff;
width: 100%;
float: left;
margin-left: 50px;
}
.booking-content h1{
font-size: 70px;
text-transform: uppercase;
font-family: 'Bebas Neue', cursive;
font-weight: 500;
}
.booking-form{
background-color: #fff;
border: 1px solid #ddd;
padding: 10px;
border-radius: 5px;
float: right;
width: 80%;
margin: 50px 0px 0px 80px;
}
.booking-form h3{
margin: 10px 0px;
}
.booking-form .input-group{
margin: 10px 0;
}
.booking-form .calculations{
margin: 10px 0;
}
.booking-form .calculations p{
font-weight: 500;
margin-bottom: 10px;
}
.booking-form input{
width: 100%;
display: block;
padding: 10px;
border-radius: 5px;
border: none;
background: #F3F5FF;
border-radius: 4px;
margin: 10px 0;
}
.booking-form .inputs{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.f-class{
display: flex;
justify-content: space-between;
align-items: center;
}
.inp-width{
min-width: 100px;
}
.plus-minus-btn{
color: #3352F2;
font-size: 30px;
padding: 2px;
margin: 10px 10px 0px 0px;
word-spacing: 20px;
}
.btn-style{
display: block;
width: 100%;
padding: 10px;
border-radius: 5px;
border: none;
color: #fff;
font-weight: 500;
background-color: #52AF3A;
cursor: pointer;
}
.amount{
display: flex;
justify-content: space-between;
}
.sign:hover{
cursor: pointer;
}
/* After Completion of Booking Design */
#afterBooking{
display: none;
color: black;
background-color: white;
padding: 20px;
}
#afterBooking label{
font-weight: bold;
}
#afterBooking .calculations p{
font-weight: bold;
}