-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmidrise.css
79 lines (62 loc) · 1.15 KB
/
midrise.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
.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;
}
.status-available {
color: #28a745;
font-weight: 600;
}
.status-filled {
color: #dc3545;
font-weight: 600;
}
.status-reserved {
color: #ffc107;
font-weight: 600;
}
.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);
}
.spot-type {
text-transform: capitalize;
font-weight: 500;
}
footer {
margin-top: 230px;
}