-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparking.css
70 lines (56 loc) · 1.04 KB
/
parking.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
.nav-style {
background-color: #f02d3a;
}
.hero-parent {
background-color: #f02d3a;
color: white;
font-family: cursive;
}
.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%;
}
.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: 1rem;
}
.card-text {
color: #666;
margin-bottom: 1.5rem;
}
.btn-outline-danger {
border-width: 2px;
font-weight: 500;
padding: 0.5rem 1.5rem;
}
.btn-outline-danger:hover {
box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}
.spot {
width: 300px;
height: 140px;
background: #fff;
box-shadow: 0 10px 15px rgba(179, 179, 179, 0.7);
border-radius: 3px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding: 0.5rem;
margin-bottom: 1rem;
align-self: flex-end;
}
footer {
margin-top: 230px;
}