-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew_booking_styles.css
73 lines (63 loc) · 1.31 KB
/
new_booking_styles.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
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #1E90FF; /* Blue background color */
color: #fff; /* White text color */
}
.container {
width: 500px;
margin: 0 auto;
background-color: #0056b3;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
text-align: center;
}
h1 {
font-size: 35px;
padding-bottom: 40px;
color: white;
}
form {
width: 90%;
margin: 0 auto;
background-color: #E0F4FF;
color: black;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
label {
display: block;
font-weight: bold;
margin-bottom: 10px;
}
input[type="text"],
input[type="date"],
select {
width: 90%;
padding: 15px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background-color: #0074D9; /* Blue button color */
color: #fff;
display: block;
width: 100%;
border: none;
padding: 15px 20px;
border-radius: 5px;
font-size: 18px;
font-weight: 500;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3; /* Change button color on hover */
}