forked from Joashomae/Swahilipot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooking.css
51 lines (45 loc) · 953 Bytes
/
booking.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
form {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
padding: 20px;
max-width: 500px;
margin: 0 auto;
border-radius: 10px;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
input, select, textarea {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: none;
border-radius: 5px;
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
button[type=submit] {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button[type=Cancel] {
background-color: #ed0c10;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button[type=submit]:hover {
background-color: #45a049;
}
button[type=Cancel]:hover {
background-color: hsl(0, 88%, 49%);
}