-
Notifications
You must be signed in to change notification settings - Fork 359
/
rajasthan.css
61 lines (49 loc) · 889 Bytes
/
rajasthan.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
body {
background-color: #f9f9f9;
font-family: 'Arial', sans-serif;
}
h1, h2 {
font-family: 'Georgia', serif;
font-weight: bold;
font-size: 4rem;
}
.tour-card {
transition: transform 0.3s, box-shadow 0.3s;
}
.tour-card:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-title {
color: #007bff;
}
.btn-primary {
background-color: #007bff;
border: none;
}
.btn-primary:hover {
background-color: #0056b3;
transition: background-color 0.3s;
}
.carousel-inner img {
height: 400px;
object-fit: cover;
}
.modal-content {
background-color: #ffffff;
border-radius: 8px;
}
.modal-header {
background-color: #007bff;
color: white;
}
.modal-title {
font-weight: bold;
}
footer {
background-color: #f1f1f1;
border-top: 1px solid #ddd;
}
.alert {
margin-top: 20px;
}