-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspots.css
60 lines (46 loc) · 919 Bytes
/
spots.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
.floating-card {
background: white;
border-radius: 15px;
border: none;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
transition: all 0.3s ease;
height: 100%;
margin-bottom: 30px;
}
.floating-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.card-body {
padding: 2rem 1.5rem;
}
.card-title {
color: #333;
font-weight: 600;
margin-bottom: 1.5rem;
text-align: center;
}
.parking-info {
list-style: none;
padding-left: 0;
margin-bottom: 1.5rem;
}
.parking-info li {
color: #666;
margin-bottom: 0.5rem;
}
.btn-outline-danger {
border-width: 2px;
font-weight: 500;
padding: 0.5rem 1.5rem;
width: 100%;
}
.btn-outline-danger:hover {
box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}
.nav-style {
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
footer {
margin-top: 230px;
}