-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (100 loc) · 1.65 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (100 loc) · 1.65 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
background-color: #f8f9fa;
font-family: 'Poppins', sans-serif;
}
.navbar {
background-color: #ffffff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
background: #fff; /* Ensures navbar remains visible */
}
.navbar-brand {
font-weight: 600;
color: #007bff;
}
.nav-link {
color: #333;
}
.nav-link:hover {
color: #007bff;
}
.Home {
display: flex;
align-items: center;
justify-content: space-between;
padding: 80px 5%;
}
.heading {
max-width: 500px;
}
.head {
border-left: 3px solid yellow;
font-size: 3rem;
font-weight: bold;
}
.imgc img {
height: 500px;
max-width: 400px;
border-radius: 10px;
}
.card{
justify-content: center;
justify-items: center;
padding: 10px;
width: 18rem;
margin-top: 30px;
margin-left: 500px;
}
#routeChecker {
background: #fff;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
max-width: 500px;
margin: auto;
}
.form-control {
border-radius: 8px;
}
#map {
width: 100%;
max-width: 800px;
height: 400px;
margin: auto;
border-radius: 10px;
background: #e9ecef;
}
#favorites{
height: 300px;
box-shadow: 0 4px 10px rgba(110, 109, 196, 0.1);
border-radius: 10px;
margin: auto;
max-width: 500px;
}
#about{
height: 300px;
box-shadow: 0 4px 10px rgba(110, 109, 196, 0.1);
border-radius: 10px;
margin: 1rem;
}
#favoritesList{
list-style: none;
}
footer {
background: #222;
color: #ddd;
padding: 20px;
text-align: center;
}
@media (max-width: 991px) {
.Home {
flex-direction: column;
text-align: center;
}
.imgc img {
margin-top: 20px;
width: 100%;
}
}