forked from Lahari03msl/hotel_booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (73 loc) · 1.47 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
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 30px;
background-image: url('bac.jpg');
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
h1 {
text-align: center;
color: #007BFF;
margin-bottom: 20px;
}
form {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.form-group {
width: 48%;
margin-bottom: 15px;
}
label {
display: block;
font-weight: bold;
color: #333;
}
input[type="text"],
input[type="date"],
input[type="number"],
select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
select {
appearance: none;
background: transparent;
background-image: url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-down-b-256.png');
background-position: right 10px center;
background-repeat: no-repeat;
}
button {
background-color: #007BFF;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #0056b3;
}
.form-group span {
font-size: 18px;
font-weight: bold;
color: #333;
}
@media (max-width: 768px) {
.form-group {
width: 100%;
}
}